diff --git a/supabase/migrations/20241209000000_make_aws_link_endpoints_readable.sql b/supabase/migrations/20241209000000_make_aws_link_endpoints_readable.sql new file mode 100644 index 0000000000..3bb92dae0d --- /dev/null +++ b/supabase/migrations/20241209000000_make_aws_link_endpoints_readable.sql @@ -0,0 +1,8 @@ +-- Allows new column to be read by users so the UI can render +-- this in the Admin section of the dashboard + +begin; + +GRANT SELECT(aws_link_endpoints) ON TABLE public.data_planes TO authenticated; + +commit;