Add custom permission to permission.permission_list in Evergreen db
authorMichael Peters <mpeters@emeralddata.net>
Thu, 28 Apr 2016 13:58:10 +0000 (09:58 -0400)
committerMichael Peters <mpeters@emeralddata.net>
Thu, 28 Apr 2016 17:35:38 +0000 (13:35 -0400)
The quick_reports_setup.sql was missing a crucial permission required
in the permission.permission_list in the Evergreen database.

This commit adds an insert of that permission.

Thank you to Brent Mills from Hood River Library for the discovery!

Signed-off-by: Michael Peters <mpeters@emeralddata.net>
sql/quick_reports_setup.sql

index 51feb41..4236a39 100644 (file)
@@ -101,3 +101,5 @@ CREATE TABLE quick_reports.draft_reports (
        ,params TEXT
        ,create_time TIMESTAMP WITH TIME zone NOT NULL DEFAULT now()
        );
+
+INSERT INTO permission.permission_list (id,code,description) VALUES (DEFAULT, 'ADMIN_SIMPLE_REPORTS', 'Necessary for Admin of Quick Reports Add-on');