diff --git a/backend/migrations/20260205193914_grant_asset_id_seq.down.sql b/backend/migrations/20260205193914_grant_asset_id_seq.down.sql new file mode 100644 index 0000000000..273ec4299e --- /dev/null +++ b/backend/migrations/20260205193914_grant_asset_id_seq.down.sql @@ -0,0 +1,2 @@ +REVOKE ALL ON SEQUENCE asset_id_seq FROM windmill_user; +REVOKE ALL ON SEQUENCE asset_id_seq FROM windmill_admin; diff --git a/backend/migrations/20260205193914_grant_asset_id_seq.up.sql b/backend/migrations/20260205193914_grant_asset_id_seq.up.sql new file mode 100644 index 0000000000..ddc052c117 --- /dev/null +++ b/backend/migrations/20260205193914_grant_asset_id_seq.up.sql @@ -0,0 +1,2 @@ +GRANT ALL ON SEQUENCE asset_id_seq TO windmill_user; +GRANT ALL ON SEQUENCE asset_id_seq TO windmill_admin;