Bug 31631: Add new system preference
[koha.git] / installer / data / mysql / atomicupdate / bug_31631-add_CalculateFundValuesIncludingTax_syspref.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "31631",
5     description => "Add new system preference CalculateFundValuesIncludingTax",
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 ('CalculateFundValuesIncludingTax', '1', NULL, 'Include tax in the calculated fund values (spent, ordered) for all supplier configurations', 'YesNo')});
11     },
12 };