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

(-)a/installer/data/mysql/atomicupdate/bug_22563.perl (-3 / +2 lines)
Lines 51-57 if ( CheckVersion($DBversion) ) { Link Here
51
        UPDATE
51
        UPDATE
52
          accountlines
52
          accountlines
53
        SET
53
        SET
54
          accounttype = 'LOST',
54
          accounttype = 'LOST'
55
        WHERE
55
        WHERE
56
          accounttype = 'L';
56
          accounttype = 'L';
57
    });
57
    });
Lines 60-66 if ( CheckVersion($DBversion) ) { Link Here
60
        UPDATE
60
        UPDATE
61
          accountlines
61
          accountlines
62
        SET
62
        SET
63
          accounttype = 'LOST_RETURNED',
63
          accounttype = 'LOST_RETURNED'
64
        WHERE
64
        WHERE
65
          accounttype = 'CR';
65
          accounttype = 'CR';
66
    });
66
    });
67
- 

Return to bug 22563