Hey, this is a pretty basic schema question, but I'm wondering how to best implement it in Django.
I have an app that collects user data from a few different question types: multiple choice questions, true/false questions, numerical questions, etc. I'll have a bunch of queries that aggregate all answers from a given user. What's the best ways to store these answers? A few possibilities: -- Different models for the different types: MultipleChoiceAnswer, NumericalAnswer, BooleanAnswer classes, etc. -- One abstract Answer class that the above inherit -- One basic Answer class with a type field, and a generic foreignkey to one of the other models. -- Is there a better way? Thanks in advance, Brett -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.