Bug 20750: Allow logging of arbitrary actions
[koha.git] / installer / data / mysql / atomicupdate / bug_20750-add_illlog_preference.perl
1 $DBversion = 'XXX';  # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "INSERT IGNORE INTO systempreferences (variable, value, explanation, type) VALUES ('IllLog', 0, 'If ON, log information about ILL requests', 'YesNo')" );
4
5     SetVersion( $DBversion );
6     print "Upgrade to $DBversion done (Bug 20750 - Allow timestamped auditing of ILL request events)\n";
7 }