Bug 23473: (QA follow-up) Fix number of tests
[koha-equinox.git] / installer / data / mysql / atomicupdate / Bug_23204_change_search_marc_map_enum_order.perl
1 $DBversion = 'XXX';
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q{
4         ALTER TABLE search_marc_map CHANGE marc_type `marc_type` enum('marc21','normarc','unimarc') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what MARC type this map is for';
5     });
6     NewVersion( $DBversion, 23204, "Change enum order for marc_type in search_marc_map to fix sorting");
7 }