mirror of
https://github.com/Hopiu/django.git
synced 2026-04-25 09:14:48 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10756 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
271 B
Python
9 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()
|