28 lines
560 B
Python
28 lines
560 B
Python
"""test
|
|
|
|
Revision ID: e0a3988a875d
|
|
Revises: b16d4a12f55f
|
|
Create Date: 2023-01-03 23:43:28.541936
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'e0a3988a875d'
|
|
down_revision = 'b16d4a12f55f'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|