29 lines
566 B
Python
29 lines
566 B
Python
"""Defined interaction domain
|
|
|
|
Revision ID: 505b61314bba
|
|
Revises: e2735d216d3c
|
|
Create Date: 2024-05-20 08:20:19.786246
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '505b61314bba'
|
|
down_revision = 'e2735d216d3c'
|
|
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 ###
|