pin version for upgrade script
authorJason Etheridge <jason@esilibrary.com>
Tue, 4 Oct 2011 17:20:41 +0000 (13:20 -0400)
committerJason Etheridge <jason@esilibrary.com>
Tue, 4 Oct 2011 17:20:41 +0000 (13:20 -0400)
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/upgrade/0633.new_print_method.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/XXXX.new_print_method.sql [deleted file]

index 9004611..368668a 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 ('0632', :eg_version); -- tsbere/berick
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0633', :eg_version); -- tsbere/phasefx
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/0633.new_print_method.sql b/Open-ILS/src/sql/Pg/upgrade/0633.new_print_method.sql
new file mode 100644 (file)
index 0000000..9298aaf
--- /dev/null
@@ -0,0 +1,27 @@
+BEGIN;
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0633', :eg_version);
+
+INSERT into config.org_unit_setting_type
+( name, grp, label, description, datatype ) VALUES
+(
+        'print.custom_js_file', 'circ',
+        oils_i18n_gettext(
+            'print.custom_js_file',
+            'Printing: Custom Javascript File',
+            'coust',
+            'label'
+        ),
+        oils_i18n_gettext(
+            'print.custom_js_file',
+            'Full URL path to a Javascript File to be loaded when printing. Should'
+            || ' implement a print_custom function for DOM manipulation. Can change'
+            || ' the value of the do_print variable to false to cancel printing.',
+            'coust',
+            'description'
+        ),
+        'string'
+    );
+
+COMMIT;
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.new_print_method.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.new_print_method.sql
deleted file mode 100644 (file)
index bb7d8da..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-INSERT into config.org_unit_setting_type
-( name, grp, label, description, datatype ) VALUES
-(
-        'print.custom_js_file', 'circ',
-        oils_i18n_gettext(
-            'print.custom_js_file',
-            'Printing: Custom Javascript File',
-            'coust',
-            'label'
-        ),
-        oils_i18n_gettext(
-            'print.custom_js_file',
-            'Full URL path to a Javascript File to be loaded when printing. Should'
-            || ' implement a print_custom function for DOM manipulation. Can change'
-            || ' the value of the do_print variable to false to cancel printing.',
-            'coust',
-            'description'
-        ),
-        'string'
-    );