fix(migration): add section_titles_google_review_url column to home_page
Some checks are pending
CI / Type Check (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Unit Tests (push) Waiting to run
Deploy / Build & Push Image (push) Waiting to run
Deploy / Deploy to VPS (push) Blocked by required conditions

ALTER TABLE home_page + _home_page_v to add the new varchar column
for the Google review URL field added to sectionTitles group.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-06-08 14:26:53 +01:00
parent c3274b0bd6
commit fc73909ea4

View file

@ -0,0 +1,7 @@
-- 0016: google review URL text field on home_page.sectionTitles group
ALTER TABLE "home_page"
ADD COLUMN IF NOT EXISTS "section_titles_google_review_url" varchar;
ALTER TABLE "_home_page_v"
ADD COLUMN IF NOT EXISTS "version_section_titles_google_review_url" varchar;