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
Add 4 quick-win features to GBP dashboard: - "Poproś o opinię" button with writeAReviewUri from Places API - "Pokaż trasę" button with directionsUri - Open/Closed badge showing business status at audit time - NAP comparison table (Name, Address, Phone) vs Google data New DB columns: google_maps_links (JSONB), google_open_now (BOOLEAN) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
279 B
SQL
6 lines
279 B
SQL
-- Migration 062: Add Google Maps links and open_now status
|
|
-- Part of GBP Dashboard Quick Wins feature
|
|
|
|
ALTER TABLE company_website_analysis ADD COLUMN IF NOT EXISTS google_maps_links JSONB;
|
|
ALTER TABLE company_website_analysis ADD COLUMN IF NOT EXISTS google_open_now BOOLEAN;
|