]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1220.data.calc-prox-for-age_protect-YAOUS.sql
LP1915464 follow-up: use spaces, not tabs; remove extra comma
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1220.data.calc-prox-for-age_protect-YAOUS.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1220', :eg_version);
4
5 INSERT into config.org_unit_setting_type
6 ( name, grp, label, description, datatype, fm_class ) VALUES
7 ( 'circ.holds.calculated_age_proximity', 'circ',
8     oils_i18n_gettext('circ.holds.calculated_age_proximity',
9         'Use calculated proximity for age-protection check',
10         'coust', 'label'),
11     oils_i18n_gettext('circ.holds.calculated_age_proximity',
12         'When checking whether a copy is viable for a hold based on transit distance, use calculated proximity with adjustments rather than baseline Org Unit proximity.',
13         'coust', 'description'),
14     'bool', null);
15
16 COMMIT;
17