mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
29 lines
712 B
Python
29 lines
712 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 721829b5dd25
|
||
|
Revises: 31dd42e5ea6f
|
||
|
Create Date: 2022-11-04 13:58:13.008301
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '721829b5dd25'
|
||
|
down_revision = '31dd42e5ea6f'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.add_column('spacy_nlp_pipeline_models', sa.Column('pipeline_name', sa.String(length=64), nullable=True))
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_column('spacy_nlp_pipeline_models', 'pipeline_name')
|
||
|
# ### end Alembic commands ###
|