liquid_feedback_frontend
annotate model/survey_answer_set.lua @ 1859:02c34183b6df
Fixed wrong filename in INSTALL file
author | bsw |
---|---|
date | Tue Nov 28 18:54:51 2023 +0100 (17 months ago) |
parents | 5a8a09119865 |
children |
rev | line source |
---|---|
bsw@1735 | 1 SurveyAnswerSet = mondelefant.new_class() |
bsw@1735 | 2 SurveyAnswerSet.table = 'survey_answer_set' |
bsw@1735 | 3 SurveyAnswerSet.primary_key = "ident" |
bsw@1735 | 4 |
bsw@1735 | 5 SurveyAnswerSet:add_reference{ |
bsw@1735 | 6 mode = '1m', |
bsw@1735 | 7 to = "SurveyAnswer", |
bsw@1735 | 8 this_key = 'ident', |
bsw@1735 | 9 that_key = 'survey_answer_set_ident', |
bsw@1735 | 10 ref = 'answers', |
bsw@1735 | 11 back_ref = 'answer_set' |
bsw@1735 | 12 } |