Migration - zamaniamin/python GitHub Wiki
Django create a database table for each models present in your app using this commands:
Makemigrations
Create a file under app_name/migrations with the database structure to create
python manage.py makemigrations
Migrate
Will read the migrations files and create the actual database and tables
python manage.py migrate
Create superuser for authenficiation/admin panel
python manage.py createsuperuser