This commit is contained in:
Waylon Walker 2023-06-09 16:04:58 -05:00
parent 1a0bf1adb9
commit c3db85a209
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
21 changed files with 647 additions and 658 deletions

View file

@ -44,7 +44,6 @@ def create_revision(
prompt=True,
),
):
alembic_cfg = Config("alembic.ini")
alembic.command.revision(
config=alembic_cfg,
@ -63,7 +62,6 @@ def checkout(
),
revision: str = typer.Option("head"),
):
alembic_cfg = Config("alembic.ini")
alembic.command.upgrade(config=alembic_cfg, revision="head")