data-migration-tool: After running migration it is not possible to checkout on stores Id > 1
It is related to https://github.com/magento/magento2/issues/3066
Data migration tool should recreate meta sequence tables
More/less what observer on store_add does:
foreach ($storeIds as $storeId) {
foreach ($entityPool as $entityType) {
$this->sequenceBuilder->setPrefix($storeId)
->setSuffix($this->sequenceConfig->get('suffix'))
->setStartValue($this->sequenceConfig->get('startValue'))
->setStoreId($storeId)
->setStep($this->sequenceConfig->get('step'))
->setWarningValue($this->sequenceConfig->get('warningValue'))
->setMaxValue($this->sequenceConfig->get('maxValue'))
->setEntityType($entityType)
->create();
}
}
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 20 (6 by maintainers)
@dfelton After fixing the issue with categories/products having the same url-key (I had about 6 or 7) and using your code, I was able to convert the DB. Thank you very much for your help 👍