mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
28 lines
848 B
SQL
28 lines
848 B
SQL
DO
|
|
$$
|
|
DECLARE
|
|
tbl_name text;
|
|
policy_exists boolean;
|
|
current_sch text;
|
|
tbl_names text[] := ARRAY['account', 'app', 'audit', 'capture', 'completed_job', 'flow', 'folder', 'http_trigger', 'queue', 'raw_app', 'resource', 'schedule', 'script', 'usr_to_group', 'variable'];
|
|
BEGIN
|
|
-- Get the current schema
|
|
SELECT current_schema() INTO current_sch;
|
|
|
|
FOR tbl_name IN SELECT unnest(tbl_names)
|
|
LOOP
|
|
SELECT EXISTS (
|
|
SELECT 1
|
|
FROM pg_policies
|
|
WHERE schemaname = current_sch
|
|
AND tablename = tbl_name
|
|
AND policyname = 'admin_policy'
|
|
) INTO policy_exists;
|
|
|
|
IF NOT policy_exists THEN
|
|
EXECUTE format('CREATE POLICY admin_policy ON %I.%I TO windmill_admin USING (true);', current_sch, tbl_name);
|
|
END IF;
|
|
END LOOP;
|
|
END;
|
|
$$;
|