0
0
mirror of https://github.com/django/django.git synced 2024-11-22 11:57:34 +01:00
django/tests/app_loading/not_installed/models.py
2022-02-07 20:37:05 +01:00

21 lines
438 B
Python

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)