Fixed #25884 -- Fixed migrate --run-syncdb when specifying an app label.

This commit is contained in:
Sarah Guermond 2018-07-15 20:32:47 -07:00 committed by Tim Graham
parent e819554018
commit cd40306854
4 changed files with 51 additions and 6 deletions

View file

@ -0,0 +1,9 @@
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