Fixed #14007 -- Added model discovery in models module without the need to specify app_label.

Thanks mark@ and Aramgutang for work on the patch.
This commit is contained in:
Tim Graham 2013-07-16 13:21:17 -04:00
parent fba6c2ede7
commit 2333c9662b
7 changed files with 30 additions and 17 deletions

View file

@ -6,6 +6,3 @@ class Article(models.Model):
sites = models.ManyToManyField(Site)
headline = models.CharField(max_length=100)
publications = models.ManyToManyField("model_package.Publication", null=True, blank=True,)
class Meta:
app_label = 'model_package'

View file

@ -3,6 +3,3 @@ from django.db import models
class Publication(models.Model):
title = models.CharField(max_length=30)
class Meta:
app_label = 'model_package'