2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
10. One-to-one relationships
|
|
|
|
|
|
|
|
To define a one-to-one relationship, use ``OneToOneField()``.
|
|
|
|
|
|
|
|
In this example, a ``Place`` optionally can be a ``Restaurant``.
|
|
|
|
"""
|
2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2011-07-13 17:35:51 +08:00
|
|
|
from django.db import models
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
class Place(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
address = models.CharField(max_length=80)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2012-06-08 00:08:47 +08:00
|
|
|
return "%s the place" % self.name
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
class Restaurant(models.Model):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
place = models.OneToOneField(Place, primary_key=True)
|
2006-05-02 09:31:56 +08:00
|
|
|
serves_hot_dogs = models.BooleanField()
|
|
|
|
serves_pizza = models.BooleanField()
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2012-06-08 00:08:47 +08:00
|
|
|
return "%s the restaurant" % self.place.name
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
class Waiter(models.Model):
|
|
|
|
restaurant = models.ForeignKey(Restaurant)
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length=50)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2012-06-08 00:08:47 +08:00
|
|
|
return "%s the waiter at %s" % (self.name, self.restaurant)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2006-09-26 10:58:36 +08:00
|
|
|
class ManualPrimaryKey(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
primary_key = models.CharField(max_length=10, primary_key=True)
|
|
|
|
name = models.CharField(max_length = 50)
|
2006-09-26 10:58:36 +08:00
|
|
|
|
|
|
|
class RelatedModel(models.Model):
|
|
|
|
link = models.OneToOneField(ManualPrimaryKey)
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length = 50)
|
2006-09-26 10:58:36 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
class MultiModel(models.Model):
|
|
|
|
link1 = models.OneToOneField(Place)
|
|
|
|
link2 = models.OneToOneField(ManualPrimaryKey)
|
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
|
|
|
|
def __unicode__(self):
|
2012-06-08 00:08:47 +08:00
|
|
|
return "Multimodel %s" % self.name
|