From d9004733856bc7826710ef51cd094b84bc1c1c06 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 25 Mar 2024 16:48:23 -0300 Subject: [PATCH] Removes "component" table and drops "flowstyle" table --- .../langflow/alembic/versions/260dbcc8b680_adds_tables.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/backend/langflow/alembic/versions/260dbcc8b680_adds_tables.py b/src/backend/langflow/alembic/versions/260dbcc8b680_adds_tables.py index 0d7eed582..040d7ff15 100644 --- a/src/backend/langflow/alembic/versions/260dbcc8b680_adds_tables.py +++ b/src/backend/langflow/alembic/versions/260dbcc8b680_adds_tables.py @@ -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 ###