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

(-)a/installer/data/mysql/atomicupdate/Bug-7021-Reintroduce_usercode_column.perl (-1 / +10 lines)
Line 0 Link Here
0
- 
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    # you can use $dbh here like:
4
    # $dbh->do( "ALTER TABLE biblio ADD COLUMN badtaste int" );
5
6
    $dbh->do("ALTER TABLE statistics ADD COLUMN usercode varchar(10) AFTER ccode");
7
8
    # Always end with this (adjust the bug info)
9
    NewVersion( $DBversion, 7021, "Bug 7021 - Reintroduce usercode column");
10
}

Return to bug 7021