Bug 26403: Move credit and debit types into translatable YAML files
[koha.git] / installer / data / mysql / db_revs / 211200039.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "29092",
5     description => "Add timestamp to account-fines table column settings",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         $dbh->do(q{
10             INSERT IGNORE INTO columns_settings (module, page, tablename, columnname, cannot_be_toggled, is_hidden)
11             VALUES ("members", "fines", "account-fines", "timestamp", 0, 0)
12         });
13     },
14 };