]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0828.data.org-not-pickup.sql
LP#1426133: Set merge_profile_id_seq explicitly
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0828.data.org-not-pickup.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0828', :eg_version);
4
5 INSERT into config.org_unit_setting_type 
6     (name, grp, label, description, datatype)
7 VALUES ( 
8     'opac.holds.org_unit_not_pickup_lib', 
9     'opac',
10     oils_i18n_gettext('opac.holds.org_unit_not_pickup_lib',
11         'OPAC: Org Unit is not a hold pickup library',
12         'coust', 'label'),
13     oils_i18n_gettext('opac.holds.org_unit_not_pickup_lib',
14         'If set, this org unit will not be offered to the patron as an '||
15         'option for a hold pickup location.  This setting has no affect '||
16         'on searching or hold targeting',
17         'coust', 'description'),
18     'bool'
19 );
20
21 COMMIT;
22