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

(-)a/admin/searchengine/elasticsearch/mappings.yaml (-1 / +1 lines)
Lines 3018-3024 biblios: Link Here
3018
        marc_type: unimarc
3018
        marc_type: unimarc
3019
        sort: ~
3019
        sort: ~
3020
        suggestible: ''
3020
        suggestible: ''
3021
    type: boolean
3021
    type: ''
3022
  ta:
3022
  ta:
3023
    label: ta
3023
    label: ta
3024
    mappings:
3024
    mappings:
(-)a/installer/data/mysql/atomicupdate/bug_31061.pl (-1 / +13 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
3
return {
4
    bug_number => "31061",
5
    description => "Remove suppress search field boolean type",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        $dbh->do(q{
10
            UPDATE `search_field` SET type = '' WHERE name = 'suppress' AND type = 'boolean'
11
        });
12
    },
13
};

Return to bug 31061