Skip to content

Commit

Permalink
magic-removal: Fixed #1479. I tried to track down the *real* problem …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
jkocherhans committed Mar 8, 2006
1 parent a8efa34 commit 7df29c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/modeltests/mutually_referential/models.py
Expand Up @@ -7,7 +7,7 @@
from django.db.models import *

class Parent(Model):
name = CharField(maxlength=100)
name = CharField(maxlength=100, core=True)
bestchild = ForeignKey("Child", null=True, related_name="favoured_by")

class Child(Model):
Expand Down

0 comments on commit 7df29c0

Please sign in to comment.