Data-migration-tool: Ignore entity types in EAV migration step.

Created on 10 Jan 2018  路  3Comments  路  Source: magento/data-migration-tool

I would like to ask how is it possible to ignore entity_types.

I get the typical error of class 'X' not existing but mentioned in eav_entity_types but its not attribute type.

Class X does not exist but mentioned in: eav_entity_type.entity_model for entity_type_id=10

so i cant use the standard to ignore it. I try using tag on my own but it didn't work. Am i missing something?

Thank you in advance!

question

Most helpful comment

You can in class-map.xml.dist add something like

    <rename>
        <from>extentionname/class_name_of_entity_model</from>
        <to />
    </rename>

and migrate. Then remove useless eav_entity_type from DB

All 3 comments

You can in class-map.xml.dist add something like

    <rename>
        <from>extentionname/class_name_of_entity_model</from>
        <to />
    </rename>

and migrate. Then remove useless eav_entity_type from DB

I am getting below error while migrating 1.9.0.1 to 2.3.1

Thanks @victor-v-rad your solution worked for me

Was this page helpful?
0 / 5 - 0 ratings