mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-07-18 10:11:35 +00:00
daemon
logs
web
app
migrations
versions
099037c4aa06_.py
0aa38a7973c5_.py
0d7aed934679_.py
10a92d8f4616_.py
1210adfe1e34_.py
318074622d14_.py
389bcf564726_.py
3d9a20b8b26c_.py
421ba4373e50_.py
4638e6509e13_.py
471aa04c1a92_.py
4886241e0f5d_.py
49a42c69e523_.py
5ba6786a847e_.py
62233e0cb2c7_.py
6227310c2112_.py
66253783654f_.py
68772b6560c3_.py
7378391345fa_.py
776761fb7466_.py
abf60427ff84_.py
b15366b25bea_.py
da9fd175af8c_.py
ded5a37f8a7b_.py
e256f5cac75d_.py
README
alembic.ini
env.py
script.py.mako
tests
.dockerignore
Dockerfile
config.py
docker-entrypoint.sh
nopaque.py
requirements.txt
.env.tpl
.gitignore
README.md
docker-compose.override.yml.tpl
docker-compose.yml
29 lines
679 B
Python
29 lines
679 B
Python
"""empty message
|
|
|
|
Revision ID: 389bcf564726
|
|
Revises: 318074622d14
|
|
Create Date: 2020-06-30 14:03:33.384379
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '389bcf564726'
|
|
down_revision = '318074622d14'
|
|
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 ###
|