Increment version for 22.05.18 release
[koha.git] / installer / data / mysql / db_revs / 211200043.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => 30108,
5     description => "Add preference OPACMandatoryHoldDates",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         $dbh->do(q{
10 INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type` ) VALUES
11 ('OPACMandatoryHoldDates', '', '|start|end|both', 'Define which hold dates are required on OPAC reserve form', 'Choice')
12         });
13     },
14 };