from django.db import models # Create your models here. class Post(models.Model): title = models.CharField(max_length=90) desc = models.TextField()