From 72501cbf2ef9382dfde0c68cf5e8f1efe10c39b2 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 15 May 2025 17:54:49 +0200 Subject: [PATCH] add dependency_map grants --- .../20250515155403_add_grant_on_dependency_map.down.sql | 1 + .../20250515155403_add_grant_on_dependency_map.up.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 backend/migrations/20250515155403_add_grant_on_dependency_map.down.sql create mode 100644 backend/migrations/20250515155403_add_grant_on_dependency_map.up.sql diff --git a/backend/migrations/20250515155403_add_grant_on_dependency_map.down.sql b/backend/migrations/20250515155403_add_grant_on_dependency_map.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20250515155403_add_grant_on_dependency_map.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20250515155403_add_grant_on_dependency_map.up.sql b/backend/migrations/20250515155403_add_grant_on_dependency_map.up.sql new file mode 100644 index 0000000000..bc0f350ebb --- /dev/null +++ b/backend/migrations/20250515155403_add_grant_on_dependency_map.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +GRANT ALL ON dependency_map TO windmill_user; +GRANT ALL ON dependency_map TO windmill_admin; \ No newline at end of file