
Originally Posted by
Blenderite
But when I imported the file, there was no data in that column for the items already there. Can I delete that column and not have an error?
For the moment no. EP4 works off of the model field, expecting every product to have a unique model. There are ways to autopopulate the database with a unique model number so that upon export, a model number would be present, the data modified then the import would make the change.
If there are/were no model # information in the initial export, then could do the following:
In the ZC admin-> tools->install SQL Patches box:
Code:
Update products set products_model = products_id;
Could concat() information to make it ever more unique or could only update values where products_model = '' or IS NULL, etc...