disable setting requiring initials for copy notes
authorChris Sharp <csharp@georgialibraries.org>
Fri, 9 Jan 2015 14:32:21 +0000 (09:32 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Fri, 9 Jan 2015 14:32:21 +0000 (09:32 -0500)
Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-2.7-upgrade.sql

index 8509aee..6c7ea87 100644 (file)
@@ -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;