[Answer]-Django Migration Missing ManyToManyField

1👍

Looks like you are not supplying app_name to makemigrations command.

python manage.py makemigrations app_name

If you won’t supply app_name, Django won’t detect changes made to your models.

Leave a comment