From 5b42226bcb4d752dadb7ec4a39d8f4b225638265 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 21 Sep 2009 14:54:19 +0000 Subject: [PATCH] must remember to add seed data to the global seed data file in addition to the upgrade files git-svn-id: svn://svn.open-ils.org/ILS/trunk@14070 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 7dd19c3db4..e691695bd1 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -2198,4 +2198,25 @@ INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VA 'string' ); +-- max claims returned count setting +INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES ( + 'circ.max_patron_claim_return_count', + 'Max Patron Claims Returned Count', + 'When this count is exceeded, a staff override is required to mark the item as claims returned', + 'integer' +); + +-- perm to override max claims returned +INSERT INTO permission.perm_list (code, description) VALUES ( + 'SET_CIRC_CLAIMS_RETURNED.override', + 'Allows staff to override the max claims returned value for a patron' +); + +-- Circ auto-renew interval setting +INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES ( + 'circ.checkout_auto_renew_age', + 'Checkout auto renew age', + 'When an item has been checked out for at least this amount of time, an attempt to check out the item to the patron that it is already checked out to will simply renew the circulation', + 'interval' +); -- 2.11.0