29 lines
525 B
Python
29 lines
525 B
Python
|
|
"""initial
|
||
|
|
|
||
|
|
Revision ID: 6fb96f39feb4
|
||
|
|
Revises:
|
||
|
|
Create Date: 2026-06-17 19:38:05.886584
|
||
|
|
|
||
|
|
"""
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
# revision identifiers, used by Alembic.
|
||
|
|
revision = '6fb96f39feb4'
|
||
|
|
down_revision = None
|
||
|
|
branch_labels = None
|
||
|
|
depends_on = None
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade():
|
||
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
|
pass
|
||
|
|
# ### end Alembic commands ###
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade():
|
||
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
|
pass
|
||
|
|
# ### end Alembic commands ###
|