]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0004.data.org-setting-precat-circ-lib.sql
LP#1917826: tweaks to data update
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0004.data.org-setting-precat-circ-lib.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0004');
4
5 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
6     'circ.pre_cat_copy_circ_lib',
7     'Pre-cat Item Circ Lib',
8     'Override the default circ lib of "here" with a pre-configured circ lib for pre-cat items.  The value should be the "shortname" (aka policy name) of the org unit',
9     'string'
10 );
11
12 COMMIT;
13