Drop container_relations from blog DB — now lives in cart
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m1s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 17:51:53 +00:00
parent 1f3d98ecc1
commit e45edbf362
2 changed files with 41 additions and 2 deletions

View File

@@ -6,7 +6,6 @@ MODELS = [
"shared.models.kv",
"shared.models.menu_item",
"shared.models.menu_node",
"shared.models.container_relation",
"blog.models.snippet",
"blog.models.tag_group",
]
@@ -14,7 +13,7 @@ MODELS = [
TABLES = frozenset({
"posts", "authors", "post_authors", "tags", "post_tags", "post_likes",
"snippets", "tag_groups", "tag_group_tags",
"menu_items", "menu_nodes", "kv", "container_relations",
"menu_items", "menu_nodes", "kv",
})
run_alembic(context.config, MODELS, TABLES)