mirror of
https://github.com/Hopiu/django.git
synced 2026-04-01 13:50:42 +00:00
9 lines
212 B
Python
9 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
|