Bug 26403: Move credit and debit types into translatable YAML files
[koha.git] / installer / data / mysql / db_revs / 210600032.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "29138",
5     description => "Use a zero instead of a 'no' in LoadSearchHistoryToTheFirstLoggedUser",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         $dbh->do(q{
10             UPDATE systempreferences SET value='0'
11             WHERE variable='LoadSearchHistoryToTheFirstLoggedUser' AND value='no';
12         });
13     },
14 }