django/tests/app_loading/not_installed/models.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
438 B
Python
Raw Permalink Normal View History

from django.db import models
class NotInstalledModel(models.Model):
class Meta:
app_label = "not_installed"
class RelatedModel(models.Model):
class Meta:
app_label = "not_installed"
not_installed = models.ForeignKey(NotInstalledModel, models.CASCADE)
class M2MRelatedModel(models.Model):
class Meta:
app_label = "not_installed"
not_installed = models.ManyToManyField(NotInstalledModel)