diff options
| author | Carl Meyer <carl@oddbird.net> | 2011-04-27 17:51:43 +0000 |
|---|---|---|
| committer | Carl Meyer <carl@oddbird.net> | 2011-04-27 17:51:43 +0000 |
| commit | 2706fdbc87037976c3165beb5b9b73e000ff479b (patch) | |
| tree | a8af2690a1854b3f6c1f20e230cf7c11f76a7db2 /tests/regressiontests/app_loading/not_installed | |
| parent | 04654e554ff5fe048275624b75fa5f9279aff175 (diff) | |
Refs #15093 -- Fixed another get_models call missed in r16053. Thanks Luke for catching it.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16108 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/app_loading/not_installed')
| -rw-r--r-- | tests/regressiontests/app_loading/not_installed/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/regressiontests/app_loading/not_installed/models.py b/tests/regressiontests/app_loading/not_installed/models.py index f62235dfd5..1e4b59894c 100644 --- a/tests/regressiontests/app_loading/not_installed/models.py +++ b/tests/regressiontests/app_loading/not_installed/models.py @@ -7,3 +7,7 @@ class NotInstalledModel(models.Model): class RelatedModel(models.Model): not_installed = models.ForeignKey(NotInstalledModel) + + +class M2MRelatedModel(models.Model): + not_installed = models.ManyToManyField(NotInstalledModel) |
