]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0818.data.duplicate_patron_check_depth_ou_setting.sql
LP1779158 Angular7 and ng-lint updates
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0818.data.duplicate_patron_check_depth_ou_setting.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0818', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type ( name, grp, label, description, datatype ) VALUES (
6     'circ.patron_edit.duplicate_patron_check_depth', 'circ',
7     oils_i18n_gettext(
8         'circ.patron_edit.duplicate_patron_check_depth',
9         'Specify search depth for the duplicate patron check in the patron editor',
10         'coust',
11         'label'),
12     oils_i18n_gettext(
13         'circ.patron_edit.duplicate_patron_check_depth',
14         'When using the patron registration page, the duplicate patron check will use the configured depth to scope the search for duplicate patrons.',
15         'coust',
16         'description'),
17     'integer')
18 ;
19
20
21
22 COMMIT;