Re: An FieldDoesNotExist happen when I use migrate

2015-08-03 Thread mohsenbande
Mr. Yang Did you managed to solve this error? On Tuesday, May 19, 2015 at 1:45:05 PM UTC+4:30, Zhong Yang wrote: > > Hi everyone, I'm a new user, please help me if you have time, I'm very > appreciate. > My Django version is 1.8.0 > I have User model it has friends list which is many to many type

Django M2M with Oracle database FieldDoesNotExist error

2015-08-03 Thread mohsenbande
Hello Django community. I have two Django models Foo and Bar that have a ManyToMany relation: Class Foo(models.model): ... bars = models.ManyToManyField('Bar', related_name='foos') somewhere in the code, i do direct assignment

Re: Django M2M with Oracle database FieldDoesNotExist error

2015-08-03 Thread mohsenbande
Erik, as stated in documentation , what you said is equivalent to what i did and the error exists yet. to have more details, here is the stack trace: Traceback (most recent call last): File "", line 2, in File "

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

Re: Django M2M with Oracle database FieldDoesNotExist error

2015-08-03 Thread mohsenbande
i found that even trying to access the relation (i.e. foo.bars) will trigger the same error !!! the only special thing about my model is that i defined foo's primary key as BigIntegerField On Tuesday, August 4, 2015 at 8:15:42 AM UTC+4:30, mohse...@gmail.com wrote: > > Erik, as stated in documen