29 lines
552 B
Python
29 lines
552 B
Python
"""auto-migrate
|
|
|
|
Revision ID: 886aa234b3b7
|
|
Revises: 0514fb24a61e
|
|
Create Date: 2025-06-28 09:27:59.962665
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '886aa234b3b7'
|
|
down_revision = '0514fb24a61e'
|
|
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 ###
|