From: erickson Date: Tue, 3 Nov 2009 17:05:10 +0000 (+0000) Subject: patch from Lebbeous Fogle-Weekley to add an org setting for default shelf expire... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c074690bcdf86f4f0f7e6e9e83963191393d92e5;p=contrib%2FConifer.git patch from Lebbeous Fogle-Weekley to add an org setting for default shelf expire interval. note, no change to 002.schema.config since this upgrade number has been grabbed already git-svn-id: svn://svn.open-ils.org/ILS/trunk@14741 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 20874d49d2..333a86c255 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -2329,6 +2329,14 @@ INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 'bool' ); +INSERT INTO config.org_unit_setting_type (name, label, description, datatype) + VALUES ( + 'circ.holds.default_shelf_expire_interval', + 'Default hold shelf expire interval', + '', + 'interval' +); + -- Sample Pre-due Notice -- diff --git a/Open-ILS/src/sql/Pg/upgrade/0066.data.circ-holds-dsei.sql b/Open-ILS/src/sql/Pg/upgrade/0066.data.circ-holds-dsei.sql new file mode 100644 index 0000000000..4a0b8f9472 --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/0066.data.circ-holds-dsei.sql @@ -0,0 +1,12 @@ +BEGIN; + +INSERT INTO config.upgrade_log (version) VALUES ('0066'); + +INSERT INTO config.org_unit_setting_type (name, label, description, datatype) + VALUES ('circ.holds.default_shelf_expire_interval', + 'Default hold shelf expire interval', + '', + 'interval'); + +COMMIT; +