Re: ForeignKey to User

2011-01-18 Thread Praveen Krishna R
*Thank You * On Tue, Jan 18, 2011 at 12:08 PM, Ivo Brodien wrote: > > from the > docs > : > > If you'd prefer Django didn't create a backwards relation, set > related_name to '+'. For example, this

Re: ForeignKey to User

2011-01-18 Thread Ivo Brodien
from the docs: If you'd prefer Django didn't create a backwards relation, set related_name to '+'. For example, this will ensure that the Usermodel won't get a backwards relation to this model: If your Model is called: MyModel then you could do for a user instance: user.mymodel_set , but if y