mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
29 lines
679 B
Python
29 lines
679 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 0d7aed934679
|
||
|
Revises: b15366b25bea
|
||
|
Create Date: 2020-06-30 13:57:48.782173
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '0d7aed934679'
|
||
|
down_revision = 'b15366b25bea'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.add_column('result_files', sa.Column('corpus_metadata', sa.JSON(), nullable=True))
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_column('result_files', 'corpus_metadata')
|
||
|
# ### end Alembic commands ###
|