Removes "component" table and drops "flowstyle" table

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-03-25 16:48:23 -03:00
commit d900473385

View file

@ -172,7 +172,4 @@ def downgrade() -> None:
if "flowstyle" in existing_tables:
op.drop_table("flowstyle")
if "component" in existing_tables:
op.drop_table("component")
# ### end Alembic commands ###