Django macht Migrationen
python manage.py makemigrations
python manage.py migrate
Ill Impala
python manage.py makemigrations
python manage.py migrate
Creating the database tables to store your Django models is the job of a
database migration.
Migration is a way of applying changes that we have made to a model,
into the database schema.
Django creates a migration file inside the migration folder.