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