/documents/models.py
http://django-jchat.googlecode.com/ · Python · 8 lines · 4 code · 2 blank · 2 comment · 0 complexity · 7675ea21ed3101db43af3b03a3fd1a61 MD5 · raw file
- from django.db import models
-
- # Create your models here.
-
- class Document(models.Model):
- """Dummy document model, just for testing use"""
- title = models.CharField(max_length=100)
- description = models.CharField(max_length=1500)