This commit is contained in:
Waylon Walker 2023-05-19 14:11:01 -05:00
parent 4be274d9e2
commit c238b9d757
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
21 changed files with 219 additions and 184 deletions

View file

@ -2,10 +2,11 @@ from logging.config import fileConfig
from alembic import context
from sqlalchemy import engine_from_config, pool
from learn_sql_model.models import Hero, Pet
from sqlmodel import SQLModel
from learn_sql_model.models.hero import Hero
from learn_sql_model.models.pet import Pet
# this is the Alembic Config object, which provides
# access to the values within the .ini file in use.
config = context.config