Bug 27835: Add new syspref ChargeFinesOnCloseDay
[koha.git] / installer / data / mysql / atomicupdate / bug_27835.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3
4     $dbh->do(q|
5         INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
6         VALUES ('ChargeFinesOnCloseDay', '1', NULL, 'Charge fines on close day.', 'YesNo')
7     |);
8
9     NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnCloseDay");
10 }