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

(-)a/installer/data/mysql/updatedatabase.pl (-3 / +2 lines)
Lines 9796-9806 if(CheckVersion($DBversion)) { Link Here
9796
$DBversion = "3.19.00.XXX";
9796
$DBversion = "3.19.00.XXX";
9797
if ( CheckVersion($DBversion) ) {
9797
if ( CheckVersion($DBversion) ) {
9798
    $dbh->do(q|
9798
    $dbh->do(q|
9799
        INSERT INTO authorised_values (category, authorised_value, lib) VALUES
9799
        INSERT IGNORE INTO authorised_values (category, authorised_value, lib) VALUES
9800
        ('REPORT_GROUP', 'SER', 'Serials')
9800
        ('REPORT_GROUP', 'SER', 'Serials')
9801
    |);
9801
    |);
9802
9802
9803
    print "Upgrade to $DBversion done (Bug 5338 - Add Serial to the report groups)\n";
9803
    print "Upgrade to $DBversion done (Bug 5338 - Add Serial to the report groups if does not exist)\n";
9804
    SetVersion ($DBversion);
9804
    SetVersion ($DBversion);
9805
}
9805
}
9806
9806
9807
- 

Return to bug 5338