View | Details | Raw Unified | Return to bug 29092
Collapse All | Expand All

(-)a/admin/columns_settings.yml (+2 lines)
Lines 735-740 modules: Link Here
735
        columns:
735
        columns:
736
            -
736
            -
737
              columnname: date
737
              columnname: date
738
            -
739
              columnname: timestamp
738
            -
740
            -
739
              columnname: credit_number
741
              columnname: credit_number
740
              is_hidden: 1
742
              is_hidden: 1
(-)a/installer/data/mysql/atomicupdate/bug_29092.pl (-1 / +14 lines)
Line 0 Link Here
0
- 
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
        # Do you stuffs here
10
        $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)});
11
        # Print useful stuff here
12
        say $out "Update is going well so far";
13
    },
14
};

Return to bug 29092