Koha/installer/data/mysql/db_revs/231200041.pl
Katrin Fischer e40ec97c90
Bug 15565: DBRev 23.12.00.041
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-05-02 13:19:15 +02:00

19 lines
626 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "15565",
description => "Add DisplayMultiItemHolds 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
('DisplayMultiItemHolds','0','','Display the ability to place holds on different items at the same time in staff interface and OPAC','YesNo')
}
);
say $out "Added new system preference 'DisplayMultiItemHolds'";
}
};