]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0239.data.org-setting-format.date.time.sql
LP#1155329: better enforce cat.bib.use_id_for_tcn
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0239.data.org-setting-format.date.time.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0239'); -- phasefx
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
6         'format.date',
7         oils_i18n_gettext(
8             'format.date',
9             'GUI: Format Dates with this pattern.', 
10             'coust', 
11             'label'),
12         oils_i18n_gettext(
13             'format.date',
14             'GUI: Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', 
15             'coust', 
16             'description'),
17         'string'
18 ), (
19         'format.time',
20         oils_i18n_gettext(
21             'format.time',
22             'GUI: Format Times with this pattern.', 
23             'coust', 
24             'label'),
25         oils_i18n_gettext(
26             'format.time',
27             'GUI: Format Times with this pattern (examples: "h:m:s.SSS a z" for "2:07:20.666 PM Eastern Daylight Time", "HH:mm" for "14:07")', 
28             'coust', 
29             'description'),
30         'string'
31 );
32
33
34 COMMIT;