29 lines
552 B
Python
29 lines
552 B
Python
"""auto-migrate
|
|
|
|
Revision ID: 27f1b3976f3f
|
|
Revises: 10e39b33d4e7
|
|
Create Date: 2025-06-30 10:09:47.442196
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '27f1b3976f3f'
|
|
down_revision = '10e39b33d4e7'
|
|
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 ###
|