Bug 25078: Move DB revs up to 21.06.00.016
[koha.git] / installer / data / mysql / db_revs / 210600010.pl
1 use Modern::Perl;
2
3 {
4     bug_number => "20472",
5     description => "Add new system preference ArticleRequestsSupportedFormats",
6     up => sub {
7         my ($args) = @_;
8         my $dbh = $args->{dbh};
9
10         $dbh->do(q{
11             INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12             ('ArticleRequestsSupportedFormats', 'PHOTOCOPY', 'PHOTOCOPY|SCAN', 'List supported formats between vertical bars', 'free')
13         });
14     },
15 }