Bug 30565: DBRev 21.12.00.040
[koha.git] / installer / data / mysql / db_revs / 210600049.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "5229",
5     description => "Remove system preference 'OPACItemsResultsDisplay'",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         $dbh->do(q{DELETE FROM systempreferences WHERE variable='OPACItemsResultsDisplay'});
10     },
11 }