Bug 23012: DBRev 22.06.00.071
[koha.git] / installer / data / mysql / db_revs / 220600071.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 };