[open-ils-commits] r14070 - trunk/Open-ILS/src/sql/Pg (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Sep 21 10:54:22 EDT 2009


Author: erickson
Date: 2009-09-21 10:54:19 -0400 (Mon, 21 Sep 2009)
New Revision: 14070

Modified:
   trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql
Log:
must remember to add seed data to the global seed data file in addition to the upgrade files

Modified: trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql	2009-09-21 13:59:02 UTC (rev 14069)
+++ trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql	2009-09-21 14:54:19 UTC (rev 14070)
@@ -2198,4 +2198,25 @@
     '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'
+);
+



More information about the open-ils-commits mailing list