Skip to content

Commit

Permalink
Forgot to run poetry run black .
Browse files Browse the repository at this point in the history
  • Loading branch information
jcadam14 committed Jan 4, 2024
1 parent 24006e1 commit 3de994a
Showing 1 changed file with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,10 @@ def upgrade() -> None:
sa.Column("type_id", sa.String(), sa.ForeignKey("sbl_institution_type.id"), primary_key=True),
)
with op.batch_alter_table("financial_institutions") as batch_op:
batch_op.drop_constraint(
"fk_sbl_institution_type_financial_institutions",
type_="foreignkey"
)
batch_op.drop_index(
op.f("ix_financial_institutions_sbl_institution_type_id")
)
batch_op.drop_column(
"sbl_institution_type_id"
)
batch_op.drop_constraint("fk_sbl_institution_type_financial_institutions", type_="foreignkey")
batch_op.drop_index(op.f("ix_financial_institutions_sbl_institution_type_id"))
batch_op.drop_column("sbl_institution_type_id")


def downgrade() -> None:
op.drop_table("fi_to_type_mapping")
Expand Down

0 comments on commit 3de994a

Please sign in to comment.