Files
Jyotisha/frontend/supabase/migrations/20260718104000_chart_profiles_upsert_id_grant.sql
T
2026-07-20 16:52:53 +08:00

7 lines
189 B
PL/PgSQL

begin;
-- PostgREST upsert may include the unchanged conflict key in its update set.
grant update (id, role, profile, updated_at) on table public.chart_profiles to authenticated;
commit;