mirror of
https://github.com/logos-co/open-law.git
synced 2025-02-03 10:35:41 +00:00
33 lines
871 B
Python
33 lines
871 B
Python
|
"""remove selected_interpretation_id
|
||
|
|
||
|
Revision ID: 776fd9579f1f
|
||
|
Revises: 7c8a5aefe801
|
||
|
Create Date: 2023-05-26 14:38:44.858319
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '776fd9579f1f'
|
||
|
down_revision = '7c8a5aefe801'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
with op.batch_alter_table('sections', schema=None) as batch_op:
|
||
|
batch_op.drop_column('selected_interpretation_id')
|
||
|
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
with op.batch_alter_table('sections', schema=None) as batch_op:
|
||
|
batch_op.add_column(sa.Column('selected_interpretation_id', sa.INTEGER(), autoincrement=False, nullable=True))
|
||
|
|
||
|
# ### end Alembic commands ###
|