[Django]-Django incorrectly expecting id column

7👍

You could fake a migration only including removing the “id” field using the –fake option when migrating, so django thinks that it had deleted the id field when really it never existed.

Leave a comment