I'm new in Django. Here is how I do:
- Create app by : python manager.py startap test
- and I add several models,
then execute:
python manager.py makemigrations
python manager migrate
It will generate tables automatically. Then I dropped the table in database by:
drop table table_name
execute again:
python manager.py makemigrations
python manager.py migrate
But there is no table generated in database, and I got the message "no changes detected". How should I do to have these table?