mirror of
https://github.com/DarrylNixon/ghostforge
synced 2024-04-22 06:27:20 -07:00
Add initial alembic migration before turning in
This commit is contained in:
parent
425780f8a4
commit
ce30df0520
5 changed files with 51 additions and 18 deletions
29
migrations/versions/e12aedb1fb49_init.py
Normal file
29
migrations/versions/e12aedb1fb49_init.py
Normal 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 ###
|
Loading…
Add table
Add a link
Reference in a new issue