Bug 30823: DBRev 22.06.00.010
[koha.git] / installer / data / mysql / db_revs / 211200045.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "14242",
5     description => "Add OPACSuggestionAutoFill system preference",
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`)
11             VALUES ('OPACSuggestionAutoFill', '0', NULL, 'Automatically fill OPAC suggestion form with data from Google Books API', 'YesNo')
12         });
13     },
14 };