Revert extend_existing workaround on MenuNode and ContainerRelation

The root cause (glue submodule) was fixed by removing it from app repos.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-19 04:50:04 +00:00
parent f1716a0fc0
commit de4bc92fce
2 changed files with 0 additions and 2 deletions

View File

@@ -15,7 +15,6 @@ class ContainerRelation(Base):
),
Index("ix_container_relations_parent", "parent_type", "parent_id"),
Index("ix_container_relations_child", "child_type", "child_id"),
{"extend_existing": True},
)
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)

View File

@@ -11,7 +11,6 @@ class MenuNode(Base):
__table_args__ = (
Index("ix_menu_nodes_container", "container_type", "container_id"),
Index("ix_menu_nodes_parent_id", "parent_id"),
{"extend_existing": True},
)
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)