29 lines
547 B
Python
29 lines
547 B
Python
"""Initial Alembic configuration
|
|
|
|
Revision ID: 40a36c2e0e8d
|
|
Revises:
|
|
Create Date: 2023-01-02 08:15:56.863042
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '40a36c2e0e8d'
|
|
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 ###
|