I’m running into IntegrityError when creating a relation to an object that is in the db from importing via mysql xx < whatever.sql
Its a relationship to the standard auth.contrib.models.User, using 1.3.1
If I clear the DB and create a new user manually, I can create my related object without issue.
Any ideas?
I had a mix between InnoDB (new tables created by south) and MyISAM (old tables from the import),
Foreign keys cant exist between these.
Developing on a windows machine, all defaults in the mysql config had the default table type as InnoDB, import was from a linux server where default was MyISAM.