"""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 ###