Stamped upgrade script for checkout_fills_related_hold_exact_match
authorBill Erickson <berick@esilibrary.com>
Mon, 25 Jul 2011 21:24:13 +0000 (17:24 -0400)
committerBill Erickson <berick@esilibrary.com>
Mon, 25 Jul 2011 21:25:19 +0000 (17:25 -0400)
Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/upgrade/0585.checkout_fills_related_hold_exact_match.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/XXXX.checkout_fills_related_hold_exact_match.sql [deleted file]

index cb783e2..7984118 100644 (file)
@@ -86,7 +86,7 @@ CREATE TRIGGER no_overlapping_deps
     BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
     FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0584', :eg_version); -- phasefx/berick
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0585', :eg_version); -- tsbere/berick
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/0585.checkout_fills_related_hold_exact_match.sql b/Open-ILS/src/sql/Pg/upgrade/0585.checkout_fills_related_hold_exact_match.sql
new file mode 100644 (file)
index 0000000..611a2b0
--- /dev/null
@@ -0,0 +1,13 @@
+BEGIN;
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0585', :eg_version);
+
+INSERT into config.org_unit_setting_type
+( name, label, description, datatype ) VALUES
+( 'circ.checkout_fills_related_hold_exact_match_only',
+    'Checkout Fills Related Hold On Valid Copy Only',
+    'When filling related holds on checkout only match on items that are valid for opportunistic capture for the hold. Without this set a Title or Volume hold could match when the item is not holdable. With this set only holdable items will match.',
+    'bool');
+
+COMMIT;
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.checkout_fills_related_hold_exact_match.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.checkout_fills_related_hold_exact_match.sql
deleted file mode 100644 (file)
index c720e36..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-INSERT into config.org_unit_setting_type
-( name, label, description, datatype ) VALUES
-( 'circ.checkout_fills_related_hold_exact_match_only',
-    'Checkout Fills Related Hold On Valid Copy Only',
-    'When filling related holds on checkout only match on items that are valid for opportunistic capture for the hold. Without this set a Title or Volume hold could match when the item is not holdable. With this set only holdable items will match.',
-    'bool');