Bug 23012: (QA follow-up) Add exec flag to db update
[koha.git] / installer / data / mysql / atomicupdate / bug_23012_-_add_PROCESSING_FOUND_to_account_credit_types.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "23012",
5     description => "Add PROCESSING_FOUND to account_credit_types",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do(q{INSERT IGNORE INTO account_credit_types ( code, description, can_be_added_manually, is_system ) VALUES ('PROCESSING_FOUND', 'Lost item processing fee refund', 0, 1) });
11     },
12 };