Bug 26403: Move credit and debit types into translatable YAML files
[koha.git] / installer / data / mysql / db_revs / 211200056.pl
1 use Modern::Perl;
2
3 return {
4     bug_number  => "30728",
5     description => "Allow opting out of real-time holds queue updating possible",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh) = @$args{qw(dbh)};
9
10         $dbh->do(q{
11             INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12             ('RealTimeHoldsQueue', '0', NULL, 'Enable updating the holds queue in real time', 'YesNo')
13         });
14     },
15 };