Koha/installer/data/mysql/db_revs/211200025.pl
Fridolin Somers 9cad82b3c6 Bug 29990: DBRev 21.12.00.025
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-04-08 15:49:18 +02:00

12 lines
555 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "29990",
description => "Add new system preference ShowHeadingUse",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$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') });
},
};