Bug 30823: Filling recalls uses 'FILL' action in action logs
[koha.git] / installer / data / mysql / atomicupdate / bug_30823_-_update_recalls_FULFILL_actions.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "30823",
5     description => "Replace recalls FULFILL actions with FILL in action logs",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do(q{ UPDATE action_logs SET action = 'FILL' WHERE action = 'FULFILL' AND module = 'RECALLS' });
11     },
12 };