for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from django.db import models
class NotInstalledModel(models.Model):
"""A model that isn't in INSTALLED_APPS."""
text = models.TextField()
class Meta:
app_label = 'notinstalled'
managed = False