Koha/installer/data/mysql/db_revs/220600071.pl
Tomas Cohen Arazi 0f94711a10
Bug 23012: DBRev 22.06.00.071
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-10-24 17:45:45 -03:00

12 lines
409 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "23012",
description => "Add PROCESSING_FOUND to account_credit_types",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$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) });
},
};