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

(-)a/installer/data/mysql/updatedatabase.pl (-1 / +9 lines)
Lines 11390-11395 if ( CheckVersion($DBversion) ) { Link Here
11390
    SetVersion ($DBversion);
11390
    SetVersion ($DBversion);
11391
}
11391
}
11392
11392
11393
$DBversion = "XXX";
11394
if ( CheckVersion($DBversion) ) {
11395
    $dbh->do(q{
11396
        DROP TABLE IF EXISTS `stopwords`;
11397
    });
11398
    print "Upgrade to $DBversion done (Removed obsolete 'stopwords' table)\n";
11399
    SetVersion($DBversion);
11400
}
11401
11393
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11402
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11394
# SEE bug 13068
11403
# SEE bug 13068
11395
# if there is anything in the atomicupdate, read and execute it.
11404
# if there is anything in the atomicupdate, read and execute it.
11396
- 

Return to bug 9819