29 lines
544 B
Python
29 lines
544 B
Python
"""auto
|
|
|
|
Revision ID: 13e8b68e0737
|
|
Revises: 3065b811b58f
|
|
Create Date: 2025-06-09 08:05:24.660884
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '13e8b68e0737'
|
|
down_revision = '3065b811b58f'
|
|
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 ###
|