Skip to content

Commit 7df29c0

Browse files
committed
magic-removal: Fixed #1479. I tried to track down the *real* problem to no avail. This fix is a total hack, but it works for now, and core is going to be re-removed soon anyhow.
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2505 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent a8efa34 commit 7df29c0

File tree

1 file changed

+1
-1
lines changed
  • tests/modeltests/mutually_referential

1 file changed

+1
-1
lines changed

tests/modeltests/mutually_referential/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from django.db.models import *
88

99
class Parent(Model):
10-
name = CharField(maxlength=100)
10+
name = CharField(maxlength=100, core=True)
1111
bestchild = ForeignKey("Child", null=True, related_name="favoured_by")
1212

1313
class Child(Model):

0 commit comments

Comments
 (0)