'bool'
);
+INSERT into config.org_unit_setting_type
+ (name, grp, label, description, datatype)
+ VALUES (
+ 'circ.holds.clear_shelf.include_pl_changed',
+ 'holds',
+ oils_i18n_gettext(
+ 'circ.holds.clear_shelf.include_pl_changed',
+ 'Clear shelf process includes Wrong-Shelf holds',
+ 'coust',
+ 'label'
+ ),
+ oils_i18n_gettext(
+ 'circ.holds.clear_shelf.include_pl_changed',
+ 'If enabled, we include Wrong-Shelf holds in the results list of the holds clear shelf process. Wrong-Shelf holds are those whose pickup lib was changed while the hold was on the holds shelf',
+ 'coust',
+ 'description'
+ ),
+ 'bool'
+ );
+
--- /dev/null
+BEGIN;
+
+-- SELECT evergreen.upgrade_deps_block_check('0730', :eg_version);
+
+INSERT into config.org_unit_setting_type
+ (name, grp, label, description, datatype)
+ VALUES (
+ 'circ.holds.clear_shelf.include_pl_changed',
+ 'holds',
+ oils_i18n_gettext(
+ 'circ.holds.clear_shelf.include_pl_changed',
+ 'Clear shelf process includes Wrong-Shelf holds',
+ 'coust',
+ 'label'
+ ),
+ oils_i18n_gettext(
+ 'circ.holds.clear_shelf.include_pl_changed',
+ 'If enabled, we include Wrong-Shelf holds in the results list of the holds clear shelf process. Wrong-Shelf holds are those whose pickup lib was changed while the hold was on the holds shelf',
+ 'coust',
+ 'description'
+ ),
+ 'bool'
+ );
+
+COMMIT;