From: Bill Erickson Date: Wed, 6 May 2015 16:28:07 +0000 (-0400) Subject: JBAS-679 2.5 circ org settings X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e2d95ffb4414b64b386d7b93187c5ae5b58a52df;p=working%2FEvergreen.git JBAS-679 2.5 circ org settings Apply values for new org unit settings circ.tally_lost, ui.circ.items_out.lost, and ui.circ.items_out.claimsreturned. Signed-off-by: Bill Erickson --- diff --git a/KCLS/sql/jbas-495/03.mods-for-2.5.sql b/KCLS/sql/jbas-495/03.mods-for-2.5.sql new file mode 100644 index 0000000000..bd69663e36 --- /dev/null +++ b/KCLS/sql/jbas-495/03.mods-for-2.5.sql @@ -0,0 +1,13 @@ +/* +Local settings modifications for 2.5 upgrade. +*/ + +INSERT INTO actor.org_unit_setting (org_unit, name, value) + VALUES (1, 'circ.tally_lost', 'true'); + +INSERT INTO actor.org_unit_setting (org_unit, name, value) + VALUES (1, 'ui.circ.items_out.lost', '5'); + +INSERT INTO actor.org_unit_setting (org_unit, name, value) + VALUES (1, 'ui.circ.items_out.claimsreturned', '6'); +