From: Ali Alnubani Date: Mon, 31 Jul 2023 10:54:21 +0000 (+0300) Subject: lib: add missing permissions for patchwork_cover_id_seq X-Git-Tag: v3.2.0~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=efa27b7730274791b223b5e855dd9c9324a3c2e4;p=thirdparty%2Fpatchwork.git lib: add missing permissions for patchwork_cover_id_seq Grants UPDATE and SELECT privileges on patchwork_cover_id_seq table for user 'nobody' to fix the following exception when cover letters are being parsed: django.db.utils.ProgrammingError: permission denied for sequence patchwork_cover_id_seq Signed-off-by: Ali Alnubani --- diff --git a/lib/sql/grant-all.postgres.sql b/lib/sql/grant-all.postgres.sql index 5a89d6b2..e89635fc 100644 --- a/lib/sql/grant-all.postgres.sql +++ b/lib/sql/grant-all.postgres.sql @@ -93,6 +93,7 @@ GRANT SELECT ON TO "nobody"; GRANT UPDATE, SELECT ON patchwork_comment_id_seq, + patchwork_cover_id_seq, patchwork_event_id_seq, patchwork_patch_id_seq, patchwork_patchtag_id_seq,