NotInstalledModel   A
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 8
rs 10
1
from django.db import models
2
3
4
class NotInstalledModel(models.Model):
5
    """A model that isn't in INSTALLED_APPS."""
6
7
    text = models.TextField()
8
9
    class Meta:
10
        app_label = 'notinstalled'
11
        managed = False
12