Koha/installer/data/mysql/db_revs/221200036.pl
Tomas Cohen Arazi f97b448661
Bug 31557: DBRev 22.12.00.036
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-05-12 11:22:49 -03:00

14 lines
537 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "31557",
description => "Add syspref HoldsQueuePrioritizeBranch",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$dbh->do(q{
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
('HoldsQueuePrioritizeBranch','homebranch','holdingbranch|homebranch','Decides if holds queue builder patron home library match to home or holding branch','Choice')
});
},
};