]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0359.data.setting-prev-iss-copy-loc.sql
Stamping upgrade for relaxing rank_ou sorting
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0359.data.setting-prev-iss-copy-loc.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0359'); -- Scott McKellar
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
6 VALUES (
7     'serial.prev_issuance_copy_location',
8     oils_i18n_gettext('setting.name', 'Serials: Previous Issuance Copy Location',
9                 'coust', 'label'),
10     oils_i18n_gettext('setting.name', 'When a serial issuance is received, copies (units) of the  previous issuance will be automatically moved into the configured shelving location',
11                 'coust', 'descripton'),
12         'link',
13     'acpl'
14 );
15
16 COMMIT;