"""auto Revision ID: e1cdc5f78f5e Revises: 2fa6feb17477 Create Date: 2025-06-05 00:57:10.914714 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'e1cdc5f78f5e' down_revision = '2fa6feb17477' 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 ###