Remove Corpus.max_nr_of_tokens column, instead set it as primitve class member

This commit is contained in:
Patrick Jentsch
2021-01-28 11:33:04 +01:00
parent c8dc215c02
commit a76c8f1d29
2 changed files with 30 additions and 2 deletions

View File

@ -0,0 +1,28 @@
"""empty message
Revision ID: 8b2e0d43384a
Revises: 790ce9512e75
Create Date: 2021-01-25 11:18:45.256537
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '8b2e0d43384a'
down_revision = '790ce9512e75'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('corpora', 'max_nr_of_tokens')
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('corpora', sa.Column('max_nr_of_tokens', sa.INTEGER(), autoincrement=False, nullable=True))
# ### end Alembic commands ###