Koha/installer/data/mysql/db_revs/220600061.pl
Tomas Cohen Arazi 50d90ff07e
Bug 31333: DBRev 22.06.00.061
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-10-05 16:02:04 -03:00

12 lines
482 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "31333",
description => "Add new suggestionPatronCategoryExceptions 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 ('suggestionPatronCategoryExceptions', '', '', 'List the patron categories not affected by suggestion system preference if on', 'Free') });
},
};