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

(-)a/installer/data/mysql/atomicupdate/bug-23673.perl (-1 / +1 lines)
Lines 5-10 if( CheckVersion( $DBversion ) ) { Link Here
5
5
6
    if( !column_exists( 'message_queue', 'updated_on' ) ) {
6
    if( !column_exists( 'message_queue', 'updated_on' ) ) {
7
        $dbh->do("ALTER TABLE message_queue ADD COLUMN updated_on timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP AFTER time_queued");
7
        $dbh->do("ALTER TABLE message_queue ADD COLUMN updated_on timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP AFTER time_queued");
8
        $dbh->do("UPDATE message_queue SET updated_on=time_queued");
8
    }
9
    }
9
10
10
    SetVersion( $DBversion );
11
    SetVersion( $DBversion );
11
- 

Return to bug 23673