from django.db import models # Create your models here. ## Contacts Model class Contact(models.Model): name = models.CharField(max_length=100) age = models.IntegerField() def __str__(self): return self.name