In Django, How to delete the table in the existing database?
Answers
Answered by
0
open file selcet and delete
Answered by
0
just delete the models in your models.py file and run the following command in the root directory of the project -
python manage.py makemigrations <your app name>
python manage.py migrate
Similar questions