]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0801.check_barcode_regex.sql
LP#1096209: add check_sms_notify parameter to all relevant event defs
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0801.check_barcode_regex.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0801', :eg_version);
4
5 INSERT into config.org_unit_setting_type
6 ( name, grp, label, description, datatype, fm_class ) VALUES
7 ( 'ui.patron.edit.ac.barcode.regex', 'gui',
8     oils_i18n_gettext('ui.patron.edit.ac.barcode.regex',
9         'Regex for barcodes on patron registration',
10         'coust', 'label'),
11     oils_i18n_gettext('ui.patron.edit.ac.barcode.regex',
12         'The Regular Expression for validation on barcodes in patron registration.',
13         'coust', 'description'),
14     'string', null);
15
16 COMMIT;