auto-claude: subtask-1-1 - Add google_opening_hours (JSONB) and google_photos_count (INTEGER) columns to CompanyWebsiteAnalysis model

- Added google_opening_hours Column(JSONB) for storing GBP opening hours
- Added google_photos_count Column(Integer) for storing GBP photos count
- Both columns added to GOOGLE BUSINESS section alongside existing google_* columns
This commit is contained in:
Maciej Pienczyn 2026-01-08 22:57:21 +01:00
parent 115c1c1193
commit 41997a15e9

View File

@ -461,6 +461,8 @@ class CompanyWebsiteAnalysis(Base):
google_reviews_count = Column(Integer)
google_place_id = Column(String(100))
google_business_status = Column(String(50))
google_opening_hours = Column(JSONB) # Opening hours from GBP
google_photos_count = Column(Integer) # Number of photos on GBP
# === AUDIT METADATA ===
audit_source = Column(String(50), default='automated')