Bug 29894: DBRev 21.12.00.044
[koha.git] / installer / data / mysql / db_revs / 210600027.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "29137",
5     description => "Add system preference CreateAVFromCataloguing",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do( q{
11             INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type)
12             VALUES ('CreateAVFromCataloguing', '1', '', 'Ability to create authorized values from the cataloguing module', 'YesNo')
13         });
14     },
15 }