Bug 26403: Move credit and debit types into translatable YAML files
[koha.git] / installer / data / mysql / db_revs / 220600057.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "29071",
5     description => "Set HoldsQueueSplitNumbering where not set",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do(q{
11             INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12             ('HoldsSplitQueueNumbering', 'actual', 'actual|virtual', 'If the holds queue is split, decide if the actual priorities should be displayed', 'Choice')
13         });
14
15         say $out "Added new system preference 'HoldsSplitQueueNumbering'";
16     },
17 };