Koha/installer/data/mysql/db_revs/210600005.pl
Jonathan Druart 29b79ce9c7 Bug 25078: Add exec flags
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-08-16 15:18:10 +02:00

15 lines
421 B
Perl
Executable file

use Modern::Perl;
{
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')
});
},
}