mirror of
https://github.com/Hopiu/django.git
synced 2026-03-28 03:40:23 +00:00
Thanks Collin Anderson for the input when creating the patch and Tim Graham for the review.
18 lines
254 B
Python
18 lines
254 B
Python
from django.db import models
|
|
|
|
|
|
class A1(models.Model):
|
|
pass
|
|
|
|
|
|
class A2(models.Model):
|
|
pass
|
|
|
|
|
|
class A3(models.Model):
|
|
b2 = models.ForeignKey('lookuperror_b.B2')
|
|
c2 = models.ForeignKey('lookuperror_c.C2')
|
|
|
|
|
|
class A4(models.Model):
|
|
pass
|