fix(seed): drop meta_keywords reference (column removed in cms_003)
All checks were successful
CI / ruff (push) Successful in 13s
CI / pytest (push) Successful in 2h38m58s
CI / validate (push) Successful in 33s
CI / dependency-scanning (push) Successful in 34s
CI / docs (push) Successful in 51s
CI / deploy (push) Successful in 1m43s

Migration cms_003 dropped meta_keywords from content_pages but the
default-pages seed script still passed it to ContentPage(...), so
make db-reset / fresh seeding bombed on the first platform.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-16 20:33:22 +02:00
parent f6e224fb24
commit 2b8dc84584

View File

@@ -2979,7 +2979,6 @@ def _create_page(
template=page_data.get("template", "default"),
sections=sections,
meta_description=page_data.get("meta_description", ""),
meta_keywords=page_data.get("meta_keywords", ""),
is_platform_page=is_platform_page,
is_published=True,
published_at=datetime.now(UTC),