In Django 1.10.6, I made a model, and ran python manage.py makemigrations
and python manage.py migrate
, it created a table in MySQL DB. Later I came to know that the table was not required. I searched and found an answer here. But that was for the versions before 1.9. In Django 1.9 sqlclear
has been removed. Now my doubt is,
how can I drop a table from the DB using Django, for versions greater than 1.9?
Is there any sqlclear
equivalent in versions greater than 1.9?
Kindly help.