]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1183.data.ident_value_required.sql
LP1615805 No inputs after submit in patron search (AngularJS)
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1183.data.ident_value_required.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1183', :eg_version);
4
5 INSERT into config.org_unit_setting_type
6 ( name, grp, label, description, datatype, fm_class ) VALUES
7 ( 'ui.patron.edit.au.ident_value.require', 'gui',
8     oils_i18n_gettext('ui.patron.edit.au.ident_value.require',
9         'require ident_value field on patron registration',
10         'coust', 'label'),
11     oils_i18n_gettext('ui.patron.edit.au.ident_value.require',
12         'The ident_value field will be required on the patron registration screen.',
13         'coust', 'description'),
14     'bool', null);
15
16 COMMIT;
17