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

(-)a/installer/data/mysql/atomicupdate/bug_27424.pl (-1 / +11 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
3
return {
4
    bug_number => "27424",
5
    description => "Add column to specify an SMTP server as the default",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        $dbh->do(q{ALTER TABLE smtp_servers ADD COLUMN `is_default` tinyint(1) NOT NULL DEFAULT 0 AFTER debug});
10
    },
11
};

Return to bug 27424