Koha/installer/data/mysql/db_revs/211200039.pl
Fridolin Somers c48aac0ffc Bug 29092: DBRev 21.12.00.039
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-04-27 11:20:45 -10:00

14 lines
452 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "29092",
description => "Add timestamp to account-fines table column settings",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$dbh->do(q{
INSERT IGNORE INTO columns_settings (module, page, tablename, columnname, cannot_be_toggled, is_hidden)
VALUES ("members", "fines", "account-fines", "timestamp", 0, 0)
});
},
};