I created mixin and inherited it in some models. The problem is that when I create a schema migration, there are mixin fields.
class MyMixin(object): a_field = models.CharField(max_length=30, blank=True) another_field = models.DateTimeField(blank=True, null=True) class Meta: abstract = True class MyModel(models.Model, myMixin): ...
Any ideas?
django mixins django-south
askvictor Jun 27 '13 at 12:59 on 2013-06-27 12:59
source share