forked from 0x2620/pandora
13 lines
341 B
Python
13 lines
341 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
|
|
class Page(models.Model):
|
|
created = models.DateTimeField(auto_now_add=True)
|
|
modified = models.DateTimeField(auto_now=True)
|
|
name = models.CharField(max_length=1024, unique=True)
|
|
body = models.TextField(blank=True)
|
|
|
|
def __unicode__(self):
|
|
return self.name
|