blob: 5119205b9ad01a2a86cab33462bd26f25ea6c177 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from django.db import models
class UnmigratedModel(models.Model):
"""
A model that is in a migration-less app (which this app is
if its migrations directory has not been repointed)
"""
pass
|