29 lines
544 B
Python
29 lines
544 B
Python
"""auto
|
|
|
|
Revision ID: ab1a71750f4e
|
|
Revises: 52e805a0163e
|
|
Create Date: 2025-06-09 09:50:46.848952
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'ab1a71750f4e'
|
|
down_revision = '52e805a0163e'
|
|
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 ###
|