]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0089.data.org-setting-selfcheck-misc.sql
LP#1248734: (follow-up) add new indexes to schema update script
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0089.data.org-setting-selfcheck-misc.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0089');
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
6     VALUES ( 
7         'circ.selfcheck.workstation_required',
8         oils_i18n_gettext('circ.selfcheck.workstation_required', 'Selfcheck: Workstation Required', 'coust', 'label'),
9         oils_i18n_gettext('circ.selfcheck.workstation_required', 'All selfcheck stations must use a workstation', 'coust', 'description'),
10         'bool'
11     ), (
12         'circ.selfcheck.patron_password_required',
13         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Selfcheck: Require Patron Password', 'coust', 'label'),
14         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Patron must log in with barcode and password at selfcheck station', 'coust', 'description'),
15         'bool'
16     );
17
18 COMMIT;