957d27881f873ff893fee2d7f04accf257d765d6
[evergreen/masslnc.git] /
1 BEGIN;
2
3     SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
4
5     INSERT INTO config.org_unit_setting_type ( name, grp, label, description, datatype ) VALUES (
6         'opac.duplicate_patron_check_use_consortium', 'opac',
7             oils_i18n_gettext(
8                 'opac.duplicate_patron_check_use_consortium',
9                 'Use consortium as the search ou for the duplicate patron check.',
10                 'coust',
11                 'label'),
12             oils_i18n_gettext(
13                 'opac.duplicate_patron_check_use_consortium',
14                 'When using the patron registration page, the duplicate patron check will use the consortium as the search_ou.',
15                 'coust',
16                 'description'),
17             'bool'
18     );
19
20     INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
21             1, 'opac.duplicate_patron_check_use_consortium', 'true'
22     );
23
24 COMMIT;