2009-03-19 17:06:04 +08:00
|
|
|
"""
|
|
|
|
Tests for defer() and only().
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
2010-09-13 04:03:20 +08:00
|
|
|
|
2009-03-19 17:06:04 +08:00
|
|
|
|
|
|
|
class Secondary(models.Model):
|
|
|
|
first = models.CharField(max_length=50)
|
|
|
|
second = models.CharField(max_length=50)
|
|
|
|
|
|
|
|
class Primary(models.Model):
|
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
value = models.CharField(max_length=50)
|
|
|
|
related = models.ForeignKey(Secondary)
|
|
|
|
|
2009-03-20 06:46:28 +08:00
|
|
|
def __unicode__(self):
|
|
|
|
return self.name
|
|
|
|
|
2009-06-06 14:14:05 +08:00
|
|
|
class Child(Primary):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class BigChild(Primary):
|
|
|
|
other = models.CharField(max_length=50)
|