On Tue, May 17, 2011 at 7:26 PM, Chris Seberino <[email protected]> wrote: > I have 3 classes that have a ManyToMany relation with the User class. > > When I try to do syncdb I get this error.... > > Error: One or more models did not validate: > mvc.course: 'users' has an m2m relation with model User, which has > either not been installed or is abstract.
Just a quick guess, but could it be this? http://docs.djangoproject.com/en/dev/ref/models/fields/#module-django.db.models.fields.related If you need to create a relationship on a model that has not yet been defined, you can use the name of the model, rather than the model object itself: """ class Car(models.Model): manufacturer = models.ForeignKey('Manufacturer') # ... class Manufacturer(models.Model): # ... """ Best, Gabe -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

