]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1146.data.privacy_waiver.sql
LP#1715767 - stamping upgrade scripts
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1146.data.privacy_waiver.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1146', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type
6     (name, label, description, grp, datatype)
7     VALUES (
8         'circ.privacy_waiver',
9         oils_i18n_gettext('circ.privacy_waiver',
10             'Allow others to use patron account (privacy waiver)',
11             'coust', 'label'),
12         oils_i18n_gettext('circ.privacy_waiver',
13             'Add a note to a user account indicating that specified people are allowed to ' ||
14             'place holds, pick up holds, check out items, or view borrowing history for that user account',
15             'coust', 'description'),
16         'circ',
17         'bool'
18     );
19
20 COMMIT;
21