From ff7c94c5a7caf94d571a2654f5dc48c494c7bc2e Mon Sep 17 00:00:00 2001 From: Lucas Abel <22837557+uael@users.noreply.github.com> Date: Wed, 20 Nov 2024 09:44:34 +0100 Subject: [PATCH] fix: grant all to new job table (#4758) --- backend/migrations/20241120084036_job_grant_all.down.sql | 1 + backend/migrations/20241120084036_job_grant_all.up.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 backend/migrations/20241120084036_job_grant_all.down.sql create mode 100644 backend/migrations/20241120084036_job_grant_all.up.sql diff --git a/backend/migrations/20241120084036_job_grant_all.down.sql b/backend/migrations/20241120084036_job_grant_all.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20241120084036_job_grant_all.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20241120084036_job_grant_all.up.sql b/backend/migrations/20241120084036_job_grant_all.up.sql new file mode 100644 index 0000000000..8a158278f4 --- /dev/null +++ b/backend/migrations/20241120084036_job_grant_all.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +GRANT ALL ON job TO windmill_user; +GRANT ALL ON job TO windmill_admin;