Reputation: 281
I accidentally deleted my migrations folders for all my apps including __init__.py
. Is there any way to reset or retrieve these? Thank you!
Upvotes: 3
Views: 5469
Reputation: 441
Just create migrations
folder the folder again, then create __init__.py
file. After that run manage.py makemigrations
Upvotes: 12