]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0227.data.org-setting-acq.holds.allow_holds_from_purchase_request.sql
New table: actor.usr_saved_search
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0227.data.org-setting-acq.holds.allow_holds_from_purchase_request.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0227'); -- phasefx
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
6         'acq.holds.allow_holds_from_purchase_request',
7         oils_i18n_gettext(
8             'acq.holds.allow_holds_from_purchase_request', 
9             'Allows patrons to create automatic holds from purchase requests.', 
10             'coust', 
11             'label'),
12         oils_i18n_gettext(
13             'acq.holds.allow_holds_from_purchase_request', 
14             'Allows patrons to create automatic holds from purchase requests.', 
15             'coust', 
16             'description'),
17         'bool'
18 );
19
20 COMMIT;