]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0113.data.org-setting-offline-usrname.sql
Break up expensive queries, match index to quals
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0113.data.org-setting-offline-usrname.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0113');
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
6     VALUES ( 
7         'circ.offline.username_allowed',
8         oils_i18n_gettext('circ.offline.username_allowed', 'Offline: Patron Usernames Allowed', 'coust', 'label'),
9         oils_i18n_gettext('circ.offline.username_allowed', 'During offline circulations, allow patrons to identify themselves with usernames in addition to barcode.  For this setting to work, a barcode format must also be defined', 'coust', 'description'),
10         'bool'
11     );
12
13 COMMIT;