and put seed data back in; I had merge-conflict-resolved it out of existence previously
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
install_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
);
-INSERT INTO config.upgrade_log (version) VALUES ('0631'); -- senator/miker
+INSERT INTO config.upgrade_log (version) VALUES ('0633'); -- tsbere/phasefx
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
( 'opac.fully_compressed_serial_holdings',
oils_i18n_gettext('opac.fully_compressed_serial_holdings', 'OPAC: Use fully compressed serial holdings', 'coust', 'label'),
oils_i18n_gettext('opac.fully_compressed_serial_holdings', 'Show fully compressed serial holdings for all libraries at and below the current context unit', 'coust', 'description'),
- 'bool')
+ 'bool'),
+
+(
+ 'print.custom_js_file',
+ 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'
+ )
;
UPDATE config.org_unit_setting_type
--- /dev/null
+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;
+++ /dev/null
-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'
- );