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

(-)a/installer/data/mysql/atomicupdate/bug_23260.pl (-5 lines)
Lines 9-18 return { Link Here
9
        my ($args) = @_;
9
        my ($args) = @_;
10
        my ( $dbh, $out ) = @$args{qw(dbh out)};
10
        my ( $dbh, $out ) = @$args{qw(dbh out)};
11
11
12
        # Do you stuffs here
13
        $dbh->do("ALTER TABLE items_last_borrower MODIFY COLUMN `borrowernumber` int(11) NULL");
14
        say_success( $out, "items_last_borrower updated to allow NULL borrowernumbers" );
15
16
        $dbh->do(
12
        $dbh->do(
17
            q{
13
            q{
18
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
14
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
19
- 

Return to bug 23260