Generally, each model maps to a single database table.We to write the field type,limits,size,etc in model.py file of the app. This will create the necessary table and fields in the database.
''' models.py '''
from django.db import models
class table_name(models.Model):
fie...