From 3d4c8d2906a8586cff11f4cfc936b2da81799074 Mon Sep 17 00:00:00 2001 From: HugoCasa Date: Mon, 26 May 2025 19:38:01 +0200 Subject: [PATCH] fix: add missing http_trigger_version_seq grants (#5816) --- .../migrations/20250526173025_http_trigger_seq_grants.down.sql | 1 + .../migrations/20250526173025_http_trigger_seq_grants.up.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 backend/migrations/20250526173025_http_trigger_seq_grants.down.sql create mode 100644 backend/migrations/20250526173025_http_trigger_seq_grants.up.sql diff --git a/backend/migrations/20250526173025_http_trigger_seq_grants.down.sql b/backend/migrations/20250526173025_http_trigger_seq_grants.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20250526173025_http_trigger_seq_grants.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20250526173025_http_trigger_seq_grants.up.sql b/backend/migrations/20250526173025_http_trigger_seq_grants.up.sql new file mode 100644 index 0000000000..bf09f0a555 --- /dev/null +++ b/backend/migrations/20250526173025_http_trigger_seq_grants.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +GRANT ALL ON SEQUENCE http_trigger_version_seq TO windmill_user; +GRANT ALL ON SEQUENCE http_trigger_version_seq TO windmill_admin; \ No newline at end of file