29 lines
544 B
Python
29 lines
544 B
Python
"""auto
|
|
|
|
Revision ID: 9565f14274c5
|
|
Revises: f347a4fd8e4f
|
|
Create Date: 2025-06-11 09:34:30.469466
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '9565f14274c5'
|
|
down_revision = 'f347a4fd8e4f'
|
|
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 ###
|