From e4d57f954935db6d055fe041f7138fa847820b0f Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 9 Apr 2025 09:38:48 +0000 Subject: [PATCH] add grants to workspace_runnable_dependencies --- backend/migrations/20250409093642_add_grant.down.sql | 1 + backend/migrations/20250409093642_add_grant.up.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 backend/migrations/20250409093642_add_grant.down.sql create mode 100644 backend/migrations/20250409093642_add_grant.up.sql diff --git a/backend/migrations/20250409093642_add_grant.down.sql b/backend/migrations/20250409093642_add_grant.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20250409093642_add_grant.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20250409093642_add_grant.up.sql b/backend/migrations/20250409093642_add_grant.up.sql new file mode 100644 index 0000000000..95bae6b21c --- /dev/null +++ b/backend/migrations/20250409093642_add_grant.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +GRANT ALL on workspace_runnable_dependencies TO windmill_user; +GRANT ALL on workspace_runnable_dependencies TO windmill_admin; \ No newline at end of file