feat: supabase schema migrations + kong gateway config

This commit is contained in:
2026-06-16 19:06:50 +02:00
parent 1c798efe15
commit d32ce26d9e
4 changed files with 140 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
-- ============================================================
-- post-boot — runs after all migrations have been applied.
-- Grants INSERT/UPDATE to authenticator on user-facing tables.
-- (Run after 01-init.sql so tables exist.)
-- ============================================================
GRANT INSERT, UPDATE ON search_queries TO authenticator;
GRANT INSERT, UPDATE ON notifications TO authenticator;