models.py 156 B

123456
  1. from django.db import models
  2. # Create your models here.
  3. class Post(models.Model):
  4. title = models.CharField(max_length=90)
  5. desc = models.TextField()