mirror of
https://github.com/kennethreitz-archive/richtext.org.git
synced 2026-06-05 07:06:15 +00:00
7 lines
208 B
Python
7 lines
208 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
class RichPost(models.Model):
|
|
text = models.TextField()
|
|
views = models.BigIntegerField()
|
|
published = models.DateTimeField('date published') |