Bug 24606: DBRev 22.06.00.083
[koha.git] / installer / data / mysql / db_revs / 220600027.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "28269",
5     description => "Add new system preference SearchWithISSNVariations",
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)
12             VALUES ('SearchWithISSNVariations','0',NULL,'If enabled, search on all variations of the ISSN','YesNo')
13
14         });
15     },
16 };