Re: Many to Many relations - DB errors

2007-05-01 Thread Michael Newman
Try using the related_name option in you manytomany feilds as it might clear up some of your tables. I agree however posting your models.py will quickly clear this problem up. On May 1, 9:46 am, MattW <[EMAIL PROTECTED]> wrote: > Dear All, > > I'm having problems with the Many-to-Many relations

Re: Many to Many relations - DB errors

2007-05-01 Thread Jason McVetta
On 5/1/07, MattW <[EMAIL PROTECTED]> wrote: > > I'm having problems with the Many-to-Many relations in my model. You'll need to include the model.py code, so people can see what is going on. --~--~-~--~~~---~--~~ You received this message because you are

Many to Many relations - DB errors

2007-05-01 Thread MattW
Dear All, I'm having problems with the Many-to-Many relations in my model. I've got a list of questions, each of which has a number of marks associated with it. The marks are in another table in the DB. I've modelled it as Many-to-Many because it seems that each question can have many marks,