> 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.
Cannot you use a model with a ForeignKey to whatever prebuilt model you'd like to use? Cf using a home-made user model for authentication that ties into the prebuilt User. I would be curious, though, whether you can actually subclass a prebuilt model; my guess is not, and that it messes up the database tables, but that would be an interesting option otherwise. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---