mirror of
https://github.com/django/django.git
synced 2025-01-31 04:40:13 +00:00
7215ffe8a4
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10756 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
271 B
Python
10 lines
271 B
Python
from django.db import models
|
|
|
|
class User(models.Model):
|
|
username = models.CharField(max_length=12, unique=True)
|
|
serial = models.IntegerField()
|
|
|
|
class UserSite(models.Model):
|
|
user = models.ForeignKey(User, to_field="username")
|
|
data = models.IntegerField()
|