mirror of
https://github.com/django/django.git
synced 2025-08-01 17:42:56 +00:00

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9680 bcc190cf-cafb-0310-a4f2-bffc1f526a37
4 lines
101 B
Python
4 lines
101 B
Python
from django.db import models
|
|
|
|
class Story(models.Model):
|
|
title = models.CharField(max_length=10)
|