Koha/installer/data/mysql/db_revs/211200045.pl
Fridolin Somers b0c98b13cc Bug 14242: DBRev 21.12.00.045
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-05-03 11:19:50 -10:00

14 lines
497 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "14242",
description => "Add OPACSuggestionAutoFill system preference",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$dbh->do(q{
INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`,`type`)
VALUES ('OPACSuggestionAutoFill', '0', NULL, 'Automatically fill OPAC suggestion form with data from Google Books API', 'YesNo')
});
},
};