I have an issue with a development and production environment MySQL database. I want to merge the 2 databases, but since content authors have been adding records to the production environment, there are about 20 overlapping records with the same primary key.
I am using Navicat for my data sync, but it just updates the records on the production server with those from my development server. The primary keys don't mean anything, and what I would like to do is give those records new primary keys.
Is this possible through Navicat? If not, would it be a bad idea to manually go into the db and change the primary keys? Or does this affect the auto-increment ability of MySQL?
Thanks.