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 ('1182', :eg_version); -- liam/jeffdavis/gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1183', :eg_version); -- mbucholtz/jeffdavis/gmcharlt
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1183', :eg_version);
+
+INSERT into config.org_unit_setting_type
+( name, grp, label, description, datatype, fm_class ) VALUES
+( 'ui.patron.edit.au.ident_value.require', 'gui',
+ oils_i18n_gettext('ui.patron.edit.au.ident_value.require',
+ 'require ident_value field on patron registration',
+ 'coust', 'label'),
+ oils_i18n_gettext('ui.patron.edit.au.ident_value.require',
+ 'The ident_value field will be required on the patron registration screen.',
+ 'coust', 'description'),
+ 'bool', 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
-( 'ui.patron.edit.au.ident_value.require', 'gui',
- oils_i18n_gettext('ui.patron.edit.au.ident_value.require',
- 'require ident_value field on patron registration',
- 'coust', 'label'),
- oils_i18n_gettext('ui.patron.edit.au.ident_value.require',
- 'The ident_value field will be required on the patron registration screen.',
- 'coust', 'description'),
- 'bool', null);
-
-COMMIT;
-