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

(-)a/installer/data/mysql/atomicupdate/bug_32435.pl (-1 / +14 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
3
return {
4
    bug_number => "32435",
5
    description => "Add ticket resolutions to catalog concerns",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        $dbh->do(q{
10
            INSERT IGNORE INTO authorised_value_categories( category_name, is_system ) VALUES ('TICKET_RESOLUTION', 1);
11
        });
12
        say $out "Added TICKET_RESOLUTION authorised value category";
13
    },
14
};

Return to bug 32435