Bug 30250: Add ApplyFrameworkDefaults system preference
[koha.git] / installer / data / mysql / db_revs / 220600033.pl
1 use Modern::Perl;
2
3 return {
4     bug_number  => "27779",
5     description => "Simplify credit descriptions",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do(q{
11             UPDATE account_credit_types
12             SET description = 'Refund' WHERE code = 'REFUND' AND description = 'A refund applied to a patrons fine';
13         });
14     },
15 }