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

(-)a/installer/data/mysql/updatedatabase.pl (-1 / +8 lines)
Lines 19998-20003 if ( CheckVersion($DBversion) ) { Link Here
19998
        }
19998
        }
19999
    );
19999
    );
20000
20000
20001
    # Catch LOST_RETURNED cases from original bug 22563 update
20002
    $dbh->do(
20003
        qq{
20004
            UPDATE accountlines
20005
            SET accounttype = 'LOST_RETURN'
20006
            WHERE accounttype = 'LOST_RETURNED'
20007
    });
20008
20001
    # Adding credit_type_code to accountlines
20009
    # Adding credit_type_code to accountlines
20002
    unless ( column_exists('accountlines', 'credit_type_code') ) {
20010
    unless ( column_exists('accountlines', 'credit_type_code') ) {
20003
        $dbh->do(
20011
        $dbh->do(
20004
- 

Return to bug 25478