marc_type: unimarc
sort: ~
suggestible: ''
type: boolean
type: ''
ta:
label: ta
mappings:
-
use Modern::Perl;
return {
bug_number => "31061",
description => "Remove suppress search field boolean type",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$dbh->do(q{
UPDATE `search_field` SET type = '' WHERE name = 'suppress' AND type = 'boolean'
});
},
};