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

(-)a/installer/data/mysql/atomicupdate/bug_21728_add_accountoffset_reserve.perl (-1 / +9 lines)
Line 0 Link Here
0
- 
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
4
        INSERT IGNORE INTO account_offset_types ( type ) VALUES ( 'Reserve Fee' );
5
    });
6
7
    SetVersion( $DBversion );
8
    print "Upgrade to $DBversion done (Bug 21728 - Add 'Reserve Fee' to the account_offset_types table if missing)\n";
9
}

Return to bug 21728