mirror of
https://github.com/Hopiu/django.git
synced 2026-03-29 04:10:24 +00:00
Thanks Collin Anderson for the input when creating the patch and Tim Graham for the review.
13 lines
172 B
Python
13 lines
172 B
Python
from django.db import models
|
|
|
|
|
|
class B1(models.Model):
|
|
pass
|
|
|
|
|
|
class B2(models.Model):
|
|
a1 = models.ForeignKey('lookuperror_a.A1')
|
|
|
|
|
|
class B3(models.Model):
|
|
pass
|