Re: ManyToManyField does not allow empty relations

2007-02-18 Thread Honza Král
On 2/18/07, akonsu <[EMAIL PROTECTED]> wrote: > > thanks for your response. > > specifying null=True for ManyToManyField will allow nulls in the > corresponding field in the association table, right? but since this > table is just a list of pairs this is not needed because having no > row at all h

Re: ManyToManyField does not allow empty relations

2007-02-18 Thread akonsu
thanks for your response. specifying null=True for ManyToManyField will allow nulls in the corresponding field in the association table, right? but since this table is just a list of pairs this is not needed because having no row at all has the same effect. correct? if so null=True is not really

Re: ManyToManyField does not allow empty relations

2007-02-17 Thread Malcolm Tredinnick
On Sun, 2007-02-18 at 01:09 +, akonsu wrote: > Hello, > > i have set A that has many-to-many relationship with set B > > currently admin interface (at least) forces me to select at least one > object from B if i add an object to A and the other way around. i do > not want that. i want to add

ManyToManyField does not allow empty relations

2007-02-17 Thread akonsu
Hello, i have set A that has many-to-many relationship with set B currently admin interface (at least) forces me to select at least one object from B if i add an object to A and the other way around. i do not want that. i want to add an object to A which has no related objects in B. i need to h