org setting to reset hold req time on uncancel
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 23 Oct 2009 13:38:21 +0000 (13:38 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 23 Oct 2009 13:38:21 +0000 (13:38 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@14575 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/0051.data.org-setting-uncancel-hold-reset.sql [new file with mode: 0644]

index 334e3ff..fca8322 100644 (file)
@@ -51,7 +51,7 @@ CREATE TABLE config.upgrade_log (
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version) VALUES ('0050'); -- Scott McKellar
+INSERT INTO config.upgrade_log (version) VALUES ('0051'); -- berick
 
 
 CREATE TABLE config.bib_source (
index d662b81..7f80ded 100644 (file)
@@ -2303,3 +2303,11 @@ INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
         'interval'
     );
 
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
+    VALUES (
+        'circ.holds.uncancel.reset_request_time',
+        'Holds: Reset request time on un-cancel',
+        'When a holds is uncanceled, reset the request time to push it to the end of the queue',
+        'bool'
+    );
+
diff --git a/Open-ILS/src/sql/Pg/upgrade/0051.data.org-setting-uncancel-hold-reset.sql b/Open-ILS/src/sql/Pg/upgrade/0051.data.org-setting-uncancel-hold-reset.sql
new file mode 100644 (file)
index 0000000..b0e0d59
--- /dev/null
@@ -0,0 +1,13 @@
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0051');
+
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
+    VALUES (
+        'circ.holds.uncancel.reset_request_time',
+        'Holds: Reset request time on un-cancel',
+        'When a holds is uncanceled, reset the request time to push it to the end of the queue',
+        'bool'
+    );
+
+COMMIT;