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 ('0629', :eg_version); -- senator/miker
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0630', :eg_version); -- tsbere/dbwells
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
'Suppress Hold Transits Group',
'coust', 'label'),
oils_i18n_gettext('circ.transit.suppress_hold',
- 'If set to a non-empty string Hold Transits will be suppressed between this OU and others with the same value. If set to an empty string transits will not be suppressed.',
+ 'If set to a non-empty value, Hold Transits will be suppressed between this OU and others with the same value. If set to an empty value, transits will not be suppressed.',
'coust', 'description'),
'string', null)
'Suppress Non-Hold Transits Group',
'coust', 'label'),
oils_i18n_gettext('circ.transit.suppress_non_hold',
- 'If set to a non-empty string Non-Hold Transits will be suppressed between this OU and others with the same value. If set to an empty string transits will not be suppressed.',
+ 'If set to a non-empty value, Non-Hold Transits will be suppressed between this OU and others with the same value. If set to an empty value, transits will not be suppressed.',
'coust', 'description'),
'string', null)
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('0630', :eg_version);
+
+INSERT into config.org_unit_setting_type (name, grp, label, description, datatype) VALUES
+( 'circ.transit.suppress_hold', 'circ',
+ oils_i18n_gettext('circ.transit.suppress_hold',
+ 'Suppress Hold Transits Group',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.transit.suppress_hold',
+ 'If set to a non-empty value, Hold Transits will be suppressed between this OU and others with the same value. If set to an empty value, transits will not be suppressed.',
+ 'coust', 'description'),
+ 'string')
+,( 'circ.transit.suppress_non_hold', 'circ',
+ oils_i18n_gettext('circ.transit.suppress_non_hold',
+ 'Suppress Non-Hold Transits Group',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.transit.suppress_non_hold',
+ 'If set to a non-empty value, Non-Hold Transits will be suppressed between this OU and others with the same value. If set to an empty value, transits will not be suppressed.',
+ 'coust', 'description'),
+ 'string');
+
+COMMIT;
+++ /dev/null
-INSERT into config.org_unit_setting_type (name, grp, label, description, datatype) VALUES
-( 'circ.transit.suppress_hold', 'circ',
- oils_i18n_gettext('circ.transit.suppress_hold',
- 'Suppress Hold Transits Group',
- 'coust', 'label'),
- oils_i18n_gettext('circ.transit.suppress_hold',
- 'If set to a non-empty string Hold Transits will be suppressed between this OU and others with the same value. If set to an empty string transits will not be suppressed.',
- 'coust', 'description'),
- 'string')
-,( 'circ.transit.suppress_non_hold', 'circ',
- oils_i18n_gettext('circ.transit.suppress_non_hold',
- 'Suppress Non-Hold Transits Group',
- 'coust', 'label'),
- oils_i18n_gettext('circ.transit.suppress_non_hold',
- 'If set to a non-empty string Non-Hold Transits will be suppressed between this OU and others with the same value. If set to an empty string transits will not be suppressed.',
- 'coust', 'description'),
- 'string');