Removes "flowstyle" table and drops "user" table index

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-03-25 16:49:26 -03:00
commit 36d8129191

View file

@ -169,7 +169,4 @@ def downgrade() -> None:
batch_op.drop_index(batch_op.f("ix_user_username"), if_exists=True)
op.drop_table("user")
if "flowstyle" in existing_tables:
op.drop_table("flowstyle")
# ### end Alembic commands ###