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