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

(-)a/installer/data/mysql/updatedatabase.pl (-4 / +5 lines)
Lines 7827-7835 if ( CheckVersion($DBversion) ) { Link Here
7827
7827
7828
$DBversion = "3.14.01.002";
7828
$DBversion = "3.14.01.002";
7829
if ( CheckVersion($DBversion) ) {
7829
if ( CheckVersion($DBversion) ) {
7830
    $dbh->do(q{
7830
    if ( TableExists('collections_tracking') ) {
7831
        ALTER TABLE collections_tracking CHANGE ctId collections_tracking_id integer(11) NOT NULL auto_increment;
7831
        $dbh->do(q{
7832
    });
7832
            ALTER TABLE collections_tracking CHANGE ctId collections_tracking_id integer(11) NOT NULL auto_increment;
7833
        });
7834
    }
7833
    print "Upgrade to $DBversion done (Bug 11384) - change name of collections_tracker.ctId column)\n";
7835
    print "Upgrade to $DBversion done (Bug 11384) - change name of collections_tracker.ctId column)\n";
7834
    SetVersion ($DBversion);
7836
    SetVersion ($DBversion);
7835
}
7837
}
7836
- 

Return to bug 11384