Shumiland/migrations/0016_google_review_url.sql
Vadym Samoilenko fc73909ea4
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
fix(migration): add section_titles_google_review_url column to home_page
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>
2026-06-08 14:26:53 +01:00

7 lines
274 B
SQL

-- 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;