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