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

(-)a/installer/data/mysql/atomicupdate/bug_24215.perl (-1 / +10 lines)
Line 0 Link Here
0
- 
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do( q|
4
        UPDATE borowers SET relationship = NULL
5
        WHERE relationship = ""
6
    |);
7
8
    SetVersion( $DBversion );
9
    print "Upgrade to $DBversion done (Bug 24215 - Replace relationship with NULL when "")\n";
10
}

Return to bug 24263