mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-13 09:30:40 +00:00
Big Corpus analysis update
This commit is contained in:
30
migrations/versions/a4b3cf4ab098_.py
Normal file
30
migrations/versions/a4b3cf4ab098_.py
Normal file
@ -0,0 +1,30 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: a4b3cf4ab098
|
||||
Revises: c384d7b3268a
|
||||
Create Date: 2021-09-23 13:14:16.227784
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'a4b3cf4ab098'
|
||||
down_revision = 'c384d7b3268a'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('corpora', sa.Column('num_tokens', sa.Integer(), nullable=True))
|
||||
op.drop_column('corpora', 'current_nr_of_tokens')
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('corpora', sa.Column('current_nr_of_tokens', sa.INTEGER(), autoincrement=False, nullable=True))
|
||||
op.drop_column('corpora', 'num_tokens')
|
||||
# ### end Alembic commands ###
|
28
migrations/versions/be010d5d708d_.py
Normal file
28
migrations/versions/be010d5d708d_.py
Normal file
@ -0,0 +1,28 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: be010d5d708d
|
||||
Revises: a4b3cf4ab098
|
||||
Create Date: 2021-09-24 09:34:54.173653
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'be010d5d708d'
|
||||
down_revision = 'a4b3cf4ab098'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('corpora', sa.Column('num_analysis_sessions', sa.Integer(), nullable=True))
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('corpora', 'num_analysis_sessions')
|
||||
# ### end Alembic commands ###
|
Reference in New Issue
Block a user