]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0381.data.spine_label_font_weight.sql
LP1615805 No inputs after submit in patron search (AngularJS)
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0381.data.spine_label_font_weight.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0381'); -- dbs
4
5 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
6     VALUES
7         ('cat.label.font.weight',
8             oils_i18n_gettext('cat.label.font.weight',
9                 'Cataloging: Spine and pocket label font weight', 'coust', 'label'),
10             oils_i18n_gettext('cat.label.font.weight',
11                 'Set the preferred font weight for spine and pocket labels. You can specify "normal", "bold", "bolder", or "lighter".',
12                 'coust', 'description'),
13             'string'
14         )
15 ;
16
17 INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES
18     (1, 'cat.label.font.weight', '"normal"')
19 ;
20
21 COMMIT;