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

(-)a/installer/data/mysql/atomicupdate/bug_25086.perl (-2 / +1 lines)
Lines 2-8 $DBversion = 'XXX'; # will be replaced by the RM Link Here
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
    # you can use $dbh here like:
3
    # you can use $dbh here like:
4
4
5
    $dbh->do( "ALTER TABLE borrower_modifications ALTER COLUMN changed_fields MEDIUMTEXT DEFAULT NULL" );
5
    $dbh->do( "ALTER TABLE borrower_modifications MODIFY changed_fields MEDIUMTEXT DEFAULT NULL" );
6
6
7
    # Always end with this (adjust the bug info)
7
    # Always end with this (adjust the bug info)
8
    NewVersion( $DBversion, 25086, "Set changed_fields column of borrower_modifications as nullable");
8
    NewVersion( $DBversion, 25086, "Set changed_fields column of borrower_modifications as nullable");
9
- 

Return to bug 25086