On Tue, 2008-03-04 at 13:06 -0800, Michael Irani wrote: > I was wondering if it's possible to add a ManyToManyField onto a > prebuilt Django model such as User... I know that it would look like > this if I were to have created the model myself: > class User(models.Model): > watch = models.ManyToManyField('self', null=True, blank=True) > > I'm unsure how to add features to prebuilt models and wasn't even sure > if that was possible.
Probably not such a great idea, since you aren't in control of any updates that might happen to the User model. It's the standard problem that if you change Django's source, that's fine, but then you have to remember to make sure your changes work with any updates we might happen to make to that code (we aren't about to add any new fields or anything, but extra Python code might be added, for example). A better approach would be to create your own many-to-many lookalike structure by creating the intermediate model with foreign keys pointing to User and whatever else you want (I guess also User in your case). That model is entirely under your control and won't require changing Django's source. Regards, Malcolm -- If Barbie is so popular, why do you have to buy her friends? http://www.pointy-stick.com/blog/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---