mirror of
https://github.com/Hopiu/django.git
synced 2026-03-18 23:10:27 +00:00
13 lines
273 B
Python
13 lines
273 B
Python
from django.db import models
|
|
|
|
|
|
class NotInstalledModel(models.Model):
|
|
pass
|
|
|
|
|
|
class RelatedModel(models.Model):
|
|
not_installed = models.ForeignKey(NotInstalledModel)
|
|
|
|
|
|
class M2MRelatedModel(models.Model):
|
|
not_installed = models.ManyToManyField(NotInstalledModel)
|