]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1097.data.yaous_for_open_circ_exists_fine_handling.sql
LP#1917826: add release notes entry
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1097.data.yaous_for_open_circ_exists_fine_handling.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1097', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type
6     (name, grp, label, description, datatype)
7     VALUES
8         ('circ.copy_alerts.forgive_fines_on_lost_checkin',
9          'circ',
10          oils_i18n_gettext('circ.copy_alerts.forgive_fines_on_lost_checkin',
11             'Forgive fines when checking out a lost item and copy alert is suppressed?',
12             'coust', 'label'),
13          oils_i18n_gettext('circ.copy_alerts.forgive_fines_on_lost_checkin',
14             'Controls whether fines are automatically forgiven when checking out an '||
15             'item that has been marked as lost, and the corresponding copy alert has been '||
16             'suppressed.',
17             'coust', 'description'),
18         'bool');
19
20 INSERT INTO config.org_unit_setting_type
21     (name, grp, label, description, datatype)
22     VALUES
23         ('circ.copy_alerts.forgive_fines_on_long_overdue_checkin',
24          'circ',
25          oils_i18n_gettext('circ.copy_alerts.forgive_fines_on_long_overdue_checkin',
26             'Forgive fines when checking out a long-overdue item and copy alert is suppressed?',
27             'coust', 'label'),
28          oils_i18n_gettext('circ.copy_alerts.forgive_fines_on_lost_checkin',
29             'Controls whether fines are automatically forgiven when checking out an '||
30             'item that has been marked as lost, and the corresponding copy alert has been '||
31             'suppressed.',
32             'coust', 'description'),
33         'bool');
34
35 COMMIT;