Koha/installer/data/mysql/db_revs/220600010.pl
Tomas Cohen Arazi ad313c37af
Bug 30823: DBRev 22.06.00.010
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-07-01 16:13:52 -03:00

12 lines
344 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "30823",
description => "Replace recalls FULFILL actions with FILL in action logs",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$dbh->do(q{ UPDATE action_logs SET action = 'FILL' WHERE action = 'FULFILL' AND module = 'RECALLS' });
},
};