]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/xxxx.data.opac_custom_css.sql
loading custom css from library setting
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / xxxx.data.opac_custom_css.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version);
4
5 INSERT into config.org_unit_setting_type
6 ( name, grp, label, description, datatype, fm_class ) VALUES
7 ( 'opac.patron.custom_css', 'opac',
8     oils_i18n_gettext('opac.patron.custom_css',
9         'Custom CSS for the OPAC',
10         'coust', 'label'),
11     oils_i18n_gettext('opac.patron.custom_css',
12         'Custom CSS for the OPAC',
13         'coust', 'description'),
14     'string', NULL);
15
16 COMMIT;