Home/ database
To generate a new update on the mysql, when you have your model updated, you should run:
> python manage.py makemigrations apiYou will see that it will make a file in migrations directory, then for generating the new migration, you can just apply it by running:
> python manage.py migrate apiCheck the database. You should see that a table with the dummy model has been generated successfully.
> make database
> show tables;