From 2c1fe88fed058f91f33aedd0b914093de94ea867 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 14 Apr 2026 20:25:32 +0000 Subject: [PATCH] fix ws_specific grant --- backend/migrations/20260414202500_ws_specific_grant.down.sql | 2 ++ backend/migrations/20260414202500_ws_specific_grant.up.sql | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 backend/migrations/20260414202500_ws_specific_grant.down.sql create mode 100644 backend/migrations/20260414202500_ws_specific_grant.up.sql diff --git a/backend/migrations/20260414202500_ws_specific_grant.down.sql b/backend/migrations/20260414202500_ws_specific_grant.down.sql new file mode 100644 index 0000000000..8f001d08d2 --- /dev/null +++ b/backend/migrations/20260414202500_ws_specific_grant.down.sql @@ -0,0 +1,2 @@ +REVOKE ALL ON ws_specific FROM windmill_user; +REVOKE ALL ON ws_specific FROM windmill_admin; diff --git a/backend/migrations/20260414202500_ws_specific_grant.up.sql b/backend/migrations/20260414202500_ws_specific_grant.up.sql new file mode 100644 index 0000000000..57bb97bb57 --- /dev/null +++ b/backend/migrations/20260414202500_ws_specific_grant.up.sql @@ -0,0 +1,2 @@ +GRANT ALL ON ws_specific TO windmill_user; +GRANT ALL ON ws_specific TO windmill_admin;