"""Initial migration Revision ID: initial_migration Revises: Create Date: 2025-06-05 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'initial_migration' down_revision = None 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 ###