14 lines
452 B
Perl
Executable file
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)
|
|
});
|
|
},
|
|
};
|