Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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:
path<magento2_toroot_install_m2folder>/vendor/magento/data-migration-tool/etc/commerce-to-commerce/eav-attribute-groups.xml.dist

Add the described attributes to above into the group ignore list:

Code Block
languagexml
<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:

...