Bug 30373: (follow-up) UNIMARC relator codes auth values
[koha.git] / installer / data / mysql / db_revs / 211200024.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "20398",
5     description => "Add system preference StaffHighlightedWords",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         # Do you stuffs here
10         $dbh->do(q{
11             INSERT IGNORE INTO systempreferences (`variable`,`value`,`options`,`explanation`,`type`)
12             VALUES ('StaffHighlightedWords','1','','Activate or not highlighting of search terms for staff interface','YesNo')
13         });
14     },
15 };