29 lines
544 B
Python
29 lines
544 B
Python
"""auto
|
|
|
|
Revision ID: 408c432b5835
|
|
Revises: 77087ff2442e
|
|
Create Date: 2025-06-06 08:34:26.804782
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '408c432b5835'
|
|
down_revision = '77087ff2442e'
|
|
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 ###
|