Bug 7021: DBRev 22.06.00.051
[koha.git] / installer / data / mysql / db_revs / 220600028.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "30077",
5     description => "Add new system preference IntranetAddMastheadLibraryPulldown",
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`)
11             VALUES ('IntranetAddMastheadLibraryPulldown','0','','Add a library select pulldown menu on the staff header search','YesNo ')
12         });
13     },
14 };