From: Jason Etheridge <jason@esilibrary.com> Date: Tue, 4 Oct 2011 17:20:41 +0000 (-0400) Subject: pin version for upgrade script X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2d28a7aa88394c8167e30e683f7e3b01b7a5c939;p=evergreen%2Fmasslnc.git pin version for upgrade script Signed-off-by: Jason Etheridge <jason@esilibrary.com> --- diff --git a/Open-ILS/src/sql/Pg/002.schema.config.sql b/Open-ILS/src/sql/Pg/002.schema.config.sql index 9004611935..368668a956 100644 --- a/Open-ILS/src/sql/Pg/002.schema.config.sql +++ b/Open-ILS/src/sql/Pg/002.schema.config.sql @@ -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 index 0000000000..9298aaf120 --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/0633.new_print_method.sql @@ -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 index bb7d8daf57..0000000000 --- a/Open-ILS/src/sql/Pg/upgrade/XXXX.new_print_method.sql +++ /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' - );