Backport of r12598 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12600 bcc190cf-cafb-0310-a4f2-bffc1f526a37
6 lines
103 B
Python
6 lines
103 B
Python
from django.db import models
|
|
|
|
|
|
class Count(models.Model):
|
|
num = models.PositiveSmallIntegerField()
|