[Answer]-Django – Legacy MySQL data migration errors

1👍

Django does not currently support composite primary keys in a table. (See wiki page and lack of model meta options which is the place this would be defined.)

The best option is probably to add another identification column to your gps table, so Django can work with it properly.

Regarding other issues, it might be best if you research and post separate questions for them.

👤che

Leave a comment