]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.data.uri_note_setting-data.sql
LP1812241: add YAOUS for default URI note text
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.uri_note_setting-data.sql
1 BEGIN;
2
3 INSERT into config.org_unit_setting_type
4 ( name, grp, label, description, datatype, fm_class ) VALUES
5 ( 'opac.uri_default_note_text', 'opac',
6     oils_i18n_gettext('opac.uri_default_note_text',
7         'Default text to appear for 856 links if none is present',
8         'coust', 'label'),
9     oils_i18n_gettext('opac.uri_default_note_text',
10         'When no value is present in the 856$z this string will be used instead',
11         'coust', 'description'),
12     'string', null)
13 ;
14
15 COMMIT;
16