]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0388.data.org-setting-ui.patron.editor_defaults.sql
LP#980296: Void Lost Fines if copy claims returned.
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0388.data.org-setting-ui.patron.editor_defaults.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0388'); -- phasefx
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
6         'ui.patron.default_ident_type',
7         oils_i18n_gettext(
8             'ui.patron.default_ident_type',
9             'GUI: Default Ident Type for Patron Registration', 
10             'coust', 
11             'label'),
12         oils_i18n_gettext(
13             'ui.patron.default_ident_type',
14             'This is the default Ident Type for new users in the patron editor.',
15             'coust', 
16             'description'),
17         'link',
18         'cit'
19 );
20
21 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
22         'ui.patron.default_country',
23         oils_i18n_gettext(
24             'ui.patron.default_country',
25             'GUI: Default Country for New Addresses in Patron Editor', 
26             'coust', 
27             'label'),
28         oils_i18n_gettext(
29             'ui.patron.default_country',
30             'This is the default Country for new addresses in the patron editor.',
31             'coust', 
32             'description'),
33         'string'
34 );
35
36 COMMIT;