Add schema cache fallback for service account JSON

- Add fallback RPC method when PostgREST schema cache fails
- Save service account JSON separately via raw SQL
- Show warning message if manual save needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
dwindown
2025-12-23 10:52:00 +07:00
parent 00e6ef17d6
commit 7c2a084b3e
2 changed files with 44 additions and 1 deletions

10
verify-column.sql Normal file
View File

@@ -0,0 +1,10 @@
-- Check if column exists in database
SELECT
column_name,
data_type,
is_nullable,
column_default
FROM information_schema.columns
WHERE table_schema = 'public'
AND table_name = 'platform_settings'
ORDER BY ordinal_position;