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 ('1321', :eg_version); -- Dyrcona/miker
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1322', :eg_version); -- rhamby/miker
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1322', :eg_version);
+
+INSERT into config.org_unit_setting_type
+( name, grp, label, description, datatype, fm_class ) VALUES
+( 'opac.patron.custom_jquery', 'opac',
+ oils_i18n_gettext('opac.patron.custom_jquery',
+ 'Custom jQuery for the OPAC',
+ 'coust', 'label'),
+ oils_i18n_gettext('opac.patron.custom_jquery',
+ 'Custom jQuery for the OPAC',
+ 'coust', 'description'),
+ 'string', NULL);
+
+COMMIT;
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version);
-
-INSERT into config.org_unit_setting_type
-( name, grp, label, description, datatype, fm_class ) VALUES
-( 'opac.patron.custom_jquery', 'opac',
- oils_i18n_gettext('opac.patron.custom_jquery',
- 'Custom jQuery for the OPAC',
- 'coust', 'label'),
- oils_i18n_gettext('opac.patron.custom_jquery',
- 'Custom jQuery for the OPAC',
- 'coust', 'description'),
- 'string', NULL);
-
-COMMIT;