My all SQL schema was deleted cause of windows10 initialization. So, I wanna run makemigrations with already existing django project code(with so many lines......). But "python manage.py makemigrations" not works with error 'Table doesn't exist'... Is there some methods overcome these situations ???
Your existing migrations scripts are corrupt. So you need to do the following steps:
Delete the migrations folder inside your app
Then run makemigrations
python manage.py makemigrations
Apply the changes to DB
python manage.py migrate