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

(-)a/installer/data/mysql/db_revs/231200043.pl (-2 / +4 lines)
Lines 7-13 return { Link Here
7
        my ($args) = @_;
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
9
10
        $dbh->do(q{ALTER TABLE action_logs ADD COLUMN diff LONGTEXT NULL DEFAULT NULL AFTER trace;});
10
        unless ( column_exists( 'action_logs', 'diff' ) ) {
11
            $dbh->do(q{ALTER TABLE action_logs ADD COLUMN diff LONGTEXT NULL DEFAULT NULL AFTER trace;});
12
        }
13
11
        say $out "Added column 'action_logs.diff'";
14
        say $out "Added column 'action_logs.diff'";
12
    },
15
    },
13
};
16
};
14
- 

Return to bug 25159