django-mptt raises django.db.utils.IntegrityError: null value in column “lft” violates not-null constraint
问题 Conditions: Django==1.8.7 и django-mptt==0.8.0. There is a model: class Tree(mptt_models.MPTTModel): name = models.CharField(max_length=120, unique=True) slug = models.SlugField(max_length=256, unique=True) parent = mptt_models.TreeForeignKey('self', null=True, blank=True, related_name='children', db_index=True) class MPTTMeta: order_insertion_by = ['name'] I can fill it with admin interface and show on a site pages. I can fill it with django shell: Python 2.7.3 (default, Jun 22 2015, 19:43