Lets create another app in the ModelExample project to showcase the different types of fields in Django Models.
python manage.py startapp datatypedemo
After running the command, include the datatypedemo
app in the INSTALLED_APPS
in settings.py
file.
'datatypedemo',
After this, you can open datatypedemo/models.py
file and start creating your models.