Bug 20815: (QA follow-up) Add message to database update / rephrase pref
[koha.git] / installer / data / mysql / atomicupdate / bug_20815.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q{
4         INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
5         ('NoRefundOnLostReturnedItemsAge','','','Do not refund lost item fees if item is lost for more than this number of days','Integer')
6     });
7
8     SetVersion( $DBversion );
9     print "Upgrade to $DBversion done (Bug 20815: Add NoRefundOnLostReturnedItemsAge system preference)\n";
10 }