Bug 30571: DBRev 22.06.00.056
[koha.git] / installer / data / mysql / db_revs / 220600034.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "29897",
5     description => "Add new system preference OPACAuthorIdentifiers",
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             ('OPACAuthorIdentifiers','0','','Display author identifiers on the OPAC detail page','YesNo')
12         });
13     },
14 };