View | Details | Raw Unified | Return to bug 21953
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_21953.perl (+6 lines)
Line 0 Link Here
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
}
(-)a/installer/data/mysql/atomicupdate/bug_21953.sql (-2 lines)
Line 1 Link Here
1
UPDATE accountlines SET description=REGEXP_REPLACE(description, '^Lost Item ', '') WHERE accounttype="PF";
2
- 

Return to bug 21953