mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
12 lines
361 B
SQL
12 lines
361 B
SQL
-- Add up migration script here
|
|
|
|
DROP POLICY IF EXISTS see_own ON account;
|
|
DROP POLICY IF EXISTS see_member ON account;
|
|
DROP POLICY IF EXISTS see_folder_extra_perms_user on account;
|
|
ALTER TABLE account DISABLE ROW LEVEL SECURITY;
|
|
|
|
ALTER TABLE account DROP COLUMN IF EXISTS owner;
|
|
|
|
GRANT ALL ON account TO windmill_admin;
|
|
GRANT ALL ON account TO windmill_user;
|