Hi, berto, It looks like PreferenceOption contains the potential values for a given preference. If that is right, it seems like you want to add a class to your model to tie the User, Preference, and PreferenceOption values together:
class UserPreferenceValue(models.Model): user = models.ForeignKey(User) value = models.ForeignKey(PreferenceOption) preference = models.ForeignKey(Preference) Doug berto wrote: > Hi, > > I created a couple of models: > > PreferenceOption(models.Model): > name = models.CharField(maxlength=32) > [...] > > Preference(models.Model): > name = models.CharField(maxlength=64) > options = models.ManyToManyField(PreferenceOption, blank=True, > null=True) > [...] > > In the database this creates a table: > > app_preference_options > > which has the columns id, preference_id and preferenceoption_id > > I want to keep a list of people's preferences and what option they > chose for that preference, so the intermediate table is exactly what I > need. Is there any way to use it in a model? > > Thanks! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---