Jason
Jason

Reputation: 281

Deleted Django Migrations Folder

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

Answers (1)

Ubaid
Ubaid

Reputation: 441

Just create migrations folder the folder again, then create __init__.py file. After that run manage.py makemigrations

Upvotes: 12

Related Questions