Hi,
I want to get rid of two related managers in a Model because I will never need them. How can I get rid of them?
This is my User Profile:
class UserProfile(models.Model):
user = models.ForeignKey(User, unique=True)
...
default_upload_container=models.ForeignKey(Container,related_name='idontcare')
default_query_container=models.ForeignKey(Container,related_name='idontcareneither')
Because default_upload_container
and default_query_container
are only user specific defaults I guess I will never query them 'backwards'. I still want easy drop down fields in the admin though.
Thanks for your help.