29 lines
552 B
Python
29 lines
552 B
Python
"""auto-migrate
|
|
|
|
Revision ID: fe0ebdec3255
|
|
Revises: f81a9a44a7fb
|
|
Create Date: 2025-06-28 09:23:36.801994
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'fe0ebdec3255'
|
|
down_revision = 'f81a9a44a7fb'
|
|
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 ###
|