mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
30 lines
740 B
Python
30 lines
740 B
Python
|
"""Add is_public column to corpora table
|
||
|
|
||
|
Revision ID: 2c4e27331ccb
|
||
|
Revises: 116b4ab3ef9c
|
||
|
Create Date: 2022-09-28 13:48:26.218643
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '2c4e27331ccb'
|
||
|
down_revision = '116b4ab3ef9c'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.add_column('corpora', sa.Column('is_public', sa.Boolean(), nullable=True))
|
||
|
op.execute('UPDATE corpora SET is_public = false;')
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_column('corpora', 'is_public')
|
||
|
# ### end Alembic commands ###
|