Re: DB migration bug in 1.8.3 when creating ManyToMany relation.

2015-08-03 Thread mohsenbande
Chen, what is the error? is it the same as what i reported here On Tuesday, August 4, 2015 at 4:24:01 AM UTC+4:30, Chen Xu wrote: > > Hi Everyone, > Does anyone experience a bug in 1.8.3 on creating ManyToMany relations? I > have

DB migration bug in 1.8.3 when creating ManyToMany relation.

2015-08-03 Thread Chen Xu
Hi Everyone, Does anyone experience a bug in 1.8.3 on creating ManyToMany relations? I have the following very simple code: from django.contrib.auth.models import User class Agent(models.Model): name = models.CharField(max_length=100) users = models.ManyToManyField(User, related_name='a