]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0692.data.fine-when-closed.sql
LP#1733695: Stamping upgrade scripts for multilingual search
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0692.data.fine-when-closed.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0692', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type
6     (name, label, description, grp, datatype)
7     VALUES (
8         'circ.fines.charge_when_closed',
9          oils_i18n_gettext(
10             'circ.fines.charge_when_closed',
11             'Charge fines on overdue circulations when closed',
12             'coust',
13             'label'
14         ),
15         oils_i18n_gettext(
16             'circ.fines.charge_when_closed',
17             'Normally, fines are not charged when a library is closed.  When set to True, fines will be charged during scheduled closings and normal weekly closed days.',
18             'coust',
19             'description'
20         ),
21         'circ',
22         'bool'
23     );
24
25 COMMIT;