2018-07-16 11:32:47 +08:00
|
|
|
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)
|
|
|
|
"""
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2018-07-16 11:32:47 +08:00
|
|
|
pass
|