Koha/installer/data/mysql/db_revs/211200056.pl
Fridolin Somers 92e37d5630 Bug 30728: Fix typo 'in real time'
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-05-12 22:17:46 -10:00

15 lines
476 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "30728",
description => "Allow opting out of real-time holds queue updating possible",
up => sub {
my ($args) = @_;
my ($dbh) = @$args{qw(dbh)};
$dbh->do(q{
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
('RealTimeHoldsQueue', '0', NULL, 'Enable updating the holds queue in real time', 'YesNo')
});
},
};