mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-12 09:00:40 +00:00
Change models
This commit is contained in:
30
migrations/versions/6227310c2112_.py
Normal file
30
migrations/versions/6227310c2112_.py
Normal file
@ -0,0 +1,30 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 6227310c2112
|
||||
Revises: ded5a37f8a7b
|
||||
Create Date: 2020-01-30 09:28:06.770159
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '6227310c2112'
|
||||
down_revision = 'ded5a37f8a7b'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_constraint('job_results_job_input_id_fkey', 'job_results', type_='foreignkey')
|
||||
op.drop_column('job_results', 'job_input_id')
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('job_results', sa.Column('job_input_id', sa.INTEGER(), autoincrement=False, nullable=True))
|
||||
op.create_foreign_key('job_results_job_input_id_fkey', 'job_results', 'job_inputs', ['job_input_id'], ['id'])
|
||||
# ### end Alembic commands ###
|
Reference in New Issue
Block a user