I'm working on a student survey project. The model that stores the questions is something like:
ID Question Type
1 is good teacher? Choice
2 What do you like about Open-answer
the teacher?
Then in the choice
type questions the student will choose an option (e.g.: fully agree) and this will store a numerical code (e.g. 5). But in the open-answer questions , the student will write text.
what kind of field should store these answers in the answers model
? maybe TextField?