29 lines
544 B
Python
29 lines
544 B
Python
"""auto
|
|
|
|
Revision ID: 6539ef5f5419
|
|
Revises: 39f714eda2bf
|
|
Create Date: 2025-06-06 10:03:52.256341
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '6539ef5f5419'
|
|
down_revision = '39f714eda2bf'
|
|
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 ###
|