mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
29 lines
662 B
Python
29 lines
662 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 1210adfe1e34
|
||
|
Revises: abf60427ff84
|
||
|
Create Date: 2019-11-04 12:54:39.389263
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '1210adfe1e34'
|
||
|
down_revision = 'abf60427ff84'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.add_column('corpora', sa.Column('status', sa.String(length=16), nullable=True))
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_column('corpora', 'status')
|
||
|
# ### end Alembic commands ###
|