Skip to content

Commit

Permalink
Allow data_plane_name column insertions on select tables (#1621)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiahna-tucker authored Sep 10, 2024
1 parent 1c683cb commit 38f7f54
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions supabase/migrations/61_insert_data_plane_name.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
begin;

grant insert (draft_id, dry_run, detail, data_plane_name) on publications to authenticated;

grant insert (capture_name, connector_tag_id, data_plane_name, draft_id, endpoint_config, update_only)
on discovers to authenticated;

commit;

0 comments on commit 38f7f54

Please sign in to comment.