[Answered ]-Django constantly re-creates AlterField migration for m2m field

1👍

I am also running into a similar problem when trying to add a ManyToMany field on a model to a custom User model. It keeps making the same AlterField migration. The only solution I’ve found so far is to put the ManyToMany field directly on the User model as the source and the other model as the target, but this does not seem ideal. This feels like a Django bug.

Leave a comment