From: Chris Sharp Date: Fri, 9 Jan 2015 14:32:21 +0000 (-0500) Subject: disable setting requiring initials for copy notes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d51f7ca8689f73cd4611b1eec9eb9fc118e81efc;p=evergreen%2Fpines.git disable setting requiring initials for copy notes --- diff --git a/Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-2.7-upgrade.sql b/Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-2.7-upgrade.sql index 8509aeec49..6c7ea87e6a 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-2.7-upgrade.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-2.7-upgrade.sql @@ -3,4 +3,7 @@ BEGIN; INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (1, 'opac.browse.pager_shortcuts', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'); INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (1, 'sms.enable', 'true'); +-- remove setting for requiring initials for copy notes +DELETE FROM actor.org_unit_setting WHERE name = 'ui.staff.require_initials.copy_notes' and org_unit = 1; + COMMIT;