Bug 32057: (follow-up) Add INSERT IGNORE in dbrev
[koha.git] / installer / data / mysql / db_revs / 220600010.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 };