Bug 26302: (follow-up) DBRev 21.06.00.019
[koha.git] / installer / data / mysql / db_revs / 210600019.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "26302",
5     description => "Add system preferences OPACResultsMaxItems and OPACResultsMaxItemsUnavailable",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         $dbh->do(q|
10             INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES
11                 ('OPACResultsMaxItems','1','','Maximum number of available items displayed in search results','Integer'),
12                 ('OPACResultsMaxItemsUnavailable','0','','Maximum number of unavailable items displayed in search results','Integer')
13         |);
14     },
15 }