mirror of
https://github.com/django/django.git
synced 2024-12-28 12:06:22 +00:00
ad8ebb7006
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17451 bcc190cf-cafb-0310-a4f2-bffc1f526a37
18 lines
476 B
Python
18 lines
476 B
Python
from django.db import models
|
|
|
|
|
|
class People(models.Model):
|
|
name = models.CharField(max_length=255)
|
|
|
|
class Message(models.Model):
|
|
from_field = models.ForeignKey(People, db_column='from_id')
|
|
|
|
class PeopleData(models.Model):
|
|
people_pk = models.ForeignKey(People, primary_key=True)
|
|
ssn = models.CharField(max_length=11)
|
|
|
|
class PeopleMoreData(models.Model):
|
|
people_unique = models.ForeignKey(People, unique=True)
|
|
license = models.CharField(max_length=255)
|
|
|