Bug 21953: Clarify PF = Lost item processing fee
[koha.git] / installer / data / mysql / atomicupdate / bug_21953.perl
1 $DBversion = 'XXX';    # will be replaced by the RM
2 if ( CheckVersion($DBversion) ) {
3     $dbh->do("UPDATE accountlines SET description = REPLACE(description, 'Lost Item ', '') WHERE description LIKE 'Lost Item %'");
4     SetVersion($DBversion);
5     print "Upgrade to $DBversion done (Bug 21953 - Remove 'Lost Item' text from accountlines description)\n";
6 }