Django Missing Fields After Initial Makemigration
When I run python manage.py makemigrations myapp and check the 0001_initial.py file in my migrations folder, I expected to see every field in my models, however what I see is below
Solution 1:
If it is 0001 version ~> You makemigrations for the first time.
Please delete it and create again (may be you makemigrations when the models don't complete yet)
If this problem stay still please edit for more detail (the console log)
Post a Comment for "Django Missing Fields After Initial Makemigration"