Backport of r9680 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9681 bcc190cf-cafb-0310-a4f2-bffc1f526a37
5 lines
101 B
Python
5 lines
101 B
Python
from django.db import models
|
|
|
|
class Story(models.Model):
|
|
title = models.CharField(max_length=10)
|