Run formatter

1386-proper-deletion-constraint-for-dynamics
Kevin Chung 2020-05-06 16:43:56 -04:00
parent 364273f1f1
commit 930da02231
1 changed files with 8 additions and 6 deletions

View File

@ -9,21 +9,23 @@ from alembic import op
# revision identifiers, used by Alembic.
revision = 'b37fb68807ea'
down_revision = '1093835a1051'
revision = "b37fb68807ea"
down_revision = "1093835a1051"
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_constraint(None, 'dynamic_challenge', type_='foreignkey')
op.create_foreign_key(None, 'dynamic_challenge', 'challenges', ['id'], ['id'], ondelete='CASCADE')
op.drop_constraint(None, "dynamic_challenge", type_="foreignkey")
op.create_foreign_key(
None, "dynamic_challenge", "challenges", ["id"], ["id"], ondelete="CASCADE"
)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_constraint(None, 'dynamic_challenge', type_='foreignkey')
op.create_foreign_key(None, 'dynamic_challenge', 'challenges', ['id'], ['id'])
op.drop_constraint(None, "dynamic_challenge", type_="foreignkey")
op.create_foreign_key(None, "dynamic_challenge", "challenges", ["id"], ["id"])
# ### end Alembic commands ###