]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0134.data.org-setting-courier-code.sql
LP#1835085: stamp DB update
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0134.data.org-setting-courier-code.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0134');
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES 
6 ( 'lib.courier_code',
7     oils_i18n_gettext('lib.courier_code', 'Courier Code', 'coust', 'label'),
8     oils_i18n_gettext('lib.courier_code', 'Courier Code for the library.  Available in transit slip templates as the %courier_code% macro.', 'coust', 'description'),
9     'string')
10 ;
11
12 COMMIT;