Koha/installer/data/mysql/db_revs/220600027.pl
Tomas Cohen Arazi d990595d84
Bug 23919: DBRev 22.06.00.027
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-08-01 14:12:30 -03:00

16 lines
472 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "28269",
description => "Add new system preference SearchWithISSNVariations",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$dbh->do( q{
INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type)
VALUES ('SearchWithISSNVariations','0',NULL,'If enabled, search on all variations of the ISSN','YesNo')
});
},
};