mirror of https://github.com/django/django.git
10 lines
212 B
Python
10 lines
212 B
Python
|
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
|