Skip to content

Commit f9dc830

Browse files
committed
test
1 parent 172a459 commit f9dc830

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

packages/supabase/deploy/supabase.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
IF NOT EXISTS (
2+
SELECT 1
3+
FROM pg_roles
4+
WHERE rolname = 'supabase_functions_admin'
5+
)
6+
THEN
7+
CREATE USER supabase_functions_admin NOINHERIT CREATEROLE LOGIN NOREPLICATION;
8+
END IF;
9+
10+
11+
112
--
213
-- PostgreSQL database dump
314
--

0 commit comments

Comments
 (0)