Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
google_primary_type, google_editorial_summary, google_price_level, google_attributes, google_reviews_data, google_photos_metadata Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
694 B
SQL
11 lines
694 B
SQL
-- Migration 061: Add Google Places API enrichment columns to company_website_analysis
|
|
-- These columns store data from Places API (New) collected during GBP audit
|
|
-- Required for displaying Places data on GBP audit dashboard
|
|
|
|
ALTER TABLE company_website_analysis ADD COLUMN google_primary_type VARCHAR(100);
|
|
ALTER TABLE company_website_analysis ADD COLUMN google_editorial_summary TEXT;
|
|
ALTER TABLE company_website_analysis ADD COLUMN google_price_level VARCHAR(50);
|
|
ALTER TABLE company_website_analysis ADD COLUMN google_attributes JSONB;
|
|
ALTER TABLE company_website_analysis ADD COLUMN google_reviews_data JSONB;
|
|
ALTER TABLE company_website_analysis ADD COLUMN google_photos_metadata JSONB;
|