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>
7 lines
274 B
SQL
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;
|