database error no such table django
问题 I have made a new app 'api' in the django project 'cc'. I have a remote database 'launchg' which I integrated it with Django using Legacies and used python manage.py inspectdb > models.py to generate a models.py file. Next replaced the generated models.py file with the models.py file in the api app. Whenever I try to fire a query into this Database database error:no such table For Eg :- WebQuery.objects.all() , it throws an error stating database error: no such table : web_query Here is my