]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0080.data.org-setting-max-fine-price-cap.sql
LP1779158 Angular7 and ng-lint updates
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0080.data.org-setting-max-fine-price-cap.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0080');
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
6     VALUES ( 
7         'circ.max_fine.cap_at_price',
8         oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
9         oils_i18n_gettext('circ.max_fine.cap_at_price', 'This prevents the system from charging more than the item price in overdue fines', 'coust', 'description'),
10         'bool' 
11     );
12
13 COMMIT;