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>
,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');