Our Magento1 module has some attributes not used in the Magento2 module anymore. Here is a list of these customer attributesThe following fields only exist in Magento 1 extension and no longer needed in Magento 2 extension:
last_purchase
last_login
last_transaction_id
total_order_count
total_order_amount
first_purchase
first_transaction_id
You need to exclude these attributes from your These fields MUST be excluded from the data migration process.
Info |
---|
To configure skipping migration of some attributes, need to configure the The configuration for all fields to be migration can be found in this file: |
Add the described attributes to above into the group ignore list:
Code Block | ||
---|---|---|
| ||
<attribute type="customer">last_purchase</attribute> <attribute type="customer">last_login</attribute> <attribute type="customer">last_transaction_id</attribute> <attribute type="customer">total_order_count</attribute> <attribute type="customer">total_order_amount</attribute> <attribute type="customer">first_purchase</attribute> <attribute type="customer">first_transaction_id</attribute> |
Here is the resultThe result should look like this:
...