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 ('1296', :eg_version); -- csharp / rfrasur / gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1297', :eg_version); -- dbriem / gmonti / gmcharlt
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1297', :eg_version);
+
+INSERT INTO config.org_unit_setting_type (
+ name, grp, label, description, datatype
+) VALUES (
+ 'circ.staff_placed_holds_default_to_ws_ou',
+ 'circ',
+ oils_i18n_gettext(
+ 'circ.staff_placed_holds_default_to_ws_ou',
+ 'Workstation OU is the default for staff-placed holds',
+ 'coust',
+ 'label'
+ ),
+ oils_i18n_gettext(
+ 'circ.staff_placed_holds_default_to_ws_ou',
+ 'For staff-placed holds, regardless of the patron preferred pickup location, the staff workstation OU is the default pickup location',
+ 'coust',
+ 'description'
+ ),
+ 'bool'
+);
+
+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
-) VALUES (
- 'circ.staff_placed_holds_default_to_ws_ou',
- 'circ',
- oils_i18n_gettext(
- 'circ.staff_placed_holds_default_to_ws_ou',
- 'Workstation OU is the default for staff-placed holds',
- 'coust',
- 'label'
- ),
- oils_i18n_gettext(
- 'circ.staff_placed_holds_default_to_ws_ou',
- 'For staff-placed holds, regardless of the patron preferred pickup location, the staff workstation OU is the default pickup location',
- 'coust',
- 'description'
- ),
- 'bool'
-);
-
-COMMIT;