Add initial alembic migration before turning in

This commit is contained in:
Darryl Nixon 2023-06-02 19:40:26 -07:00
parent 425780f8a4
commit ce30df0520
5 changed files with 51 additions and 18 deletions

View file

@ -0,0 +1,29 @@
"""init
Revision ID: e12aedb1fb49
Revises:
Create Date: 2023-06-02 19:37:26.134573
"""
import sqlalchemy as sa
import sqlmodel
from alembic import op
# revision identifiers, used by Alembic.
revision = "e12aedb1fb49"
down_revision = None
branch_labels = None
depends_on = None
def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###