-- Add google_service_account_json column to platform_settings -- This will store the encrypted service account JSON ALTER TABLE platform_settings ADD COLUMN IF NOT EXISTS google_service_account_json TEXT; -- Add comment COMMENT ON COLUMN platform_settings.google_service_account_json IS 'Google Service Account JSON for Calendar API integration (should be encrypted)';