mirror of
https://github.com/django/django.git
synced 2025-11-01 20:31:40 +00:00
Fixed #17717 (again) -- Used the new API for concrete models added in r17573. Many thanks to Simon Charette and Anssi Kääriäinen.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17643 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7ce1ad7c03
commit
dd441701ce
3 changed files with 14 additions and 7 deletions
|
|
@ -263,6 +263,10 @@ class ProxyBaseModel(BaseModel):
|
|||
class Meta:
|
||||
proxy = True
|
||||
|
||||
class ProxyProxyBaseModel(ProxyBaseModel):
|
||||
class Meta:
|
||||
proxy = True
|
||||
|
||||
class LengthModel(models.Model):
|
||||
data = models.IntegerField()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue