I'm trying to run "python manage.py makemigrations" but appears "No changes detected" . I had done changes so I don't know where is the problem. HELP!
Asked
Active
Viewed 46 times
1
-
can you try `python manage.py makemigrations
` and see if still no change is detected? – Pratibha Mar 25 '21 at 22:25 -
I tried but it doesn't work – serbenar Mar 25 '21 at 22:26
-
Did you run makemigrations on the original data schema, before you changed it? – John Gordon Mar 25 '21 at 22:32
3 Answers
0
Maybe you need a check the directory where is the files .pyc and delete all files

Sabito stands with Ukraine
- 4,271
- 8
- 34
- 56

user5c
- 16
- 1
0
Sometimes you have to specify the app for which you made the changes. And don't forget to save.
python manage.py makemigrations app-name
python manage.py migrate

Soerendip
- 7,684
- 15
- 61
- 128