Jonathan Druart
8b0a44dcb5
% perl -wc installer/data/mysql/atomicupdate/skeleton.pl Useless use of anonymous hash ({}) in void context at installer/data/mysql/atomicupdate/skeleton.pl Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
15 lines
428 B
Perl
Executable file
15 lines
428 B
Perl
Executable file
use Modern::Perl;
|
|
|
|
return {
|
|
bug_number => "26205",
|
|
description => "Add new system preference NewsLog to log news changes",
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my $dbh = $args->{dbh};
|
|
|
|
$dbh->do( q{
|
|
INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type)
|
|
VALUES ('NewsLog', '0', 'If enabled, log OPAC News changes', '', 'YesNo')
|
|
});
|
|
},
|
|
}
|