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

(-)a/admin/columns_settings.yml (-1 / +1 lines)
Lines 118-124 modules: Link Here
118
        default_sort_order: 0
118
        default_sort_order: 0
119
        columns:
119
        columns:
120
            -
120
            -
121
              columnname: basket_number
121
              columnname: order_line
122
            -
122
            -
123
              columnname: order_information
123
              columnname: order_information
124
            -
124
            -
(-)a/installer/data/mysql/atomicupdate/bug_34748_column_config_error.pl (-1 / +17 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "34748",
5
    description => "Fix column name in column configuration for basket summary",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
10
        # Do you stuffs here
11
        $dbh->do(
12
            q{UPDATE columns_settings SET columnname="order_line" WHERE columnname="basket_number" AND module="acqui" AND page="basket" and tablename="orders"}
13
        );
14
15
        say $out "Update column configuration with new columnname order_line";
16
    },
17
};

Return to bug 34748