]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0630.data.suppress_transits.sql
Lp 1802166: Purge User Preferred Names
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0630.data.suppress_transits.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0630', :eg_version);
4
5 INSERT into config.org_unit_setting_type (name, grp, label, description, datatype) VALUES
6 ( 'circ.transit.suppress_hold', 'circ',
7     oils_i18n_gettext('circ.transit.suppress_hold',
8         'Suppress Hold Transits Group',
9         'coust', 'label'),
10     oils_i18n_gettext('circ.transit.suppress_hold',
11         '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.',
12         'coust', 'description'),
13     'string')
14 ,( 'circ.transit.suppress_non_hold', 'circ',
15     oils_i18n_gettext('circ.transit.suppress_non_hold',
16         'Suppress Non-Hold Transits Group',
17         'coust', 'label'),
18     oils_i18n_gettext('circ.transit.suppress_non_hold',
19         '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.',
20         'coust', 'description'),
21     'string');
22
23 COMMIT;