Bug 29990: DBRev 21.12.00.025
[koha.git] / installer / data / mysql / db_revs / 211200025.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "29990",
5     description => "Add new system preference ShowHeadingUse",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do(q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('ShowHeadingUse', '0', NULL, 'Show whether authority record contains an established heading that conforms to descriptive cataloguing rules, and can therefore be used as a main/added entry, or subject, or series title', 'YesNo') });
11     },
12 };