我想将LimeSurvey与我的django应用程序集成。 LimeSurvey创建一个具有特定ID的调查,为调查用户提供不同的令牌,并在一个表中保存特定调查的所有令牌:
调查表:
survey_id
token_id
并在表格中:
survey_898989
id submit_date token .....
tokens_898989
tid first_name last_name email email_status token
编辑:898989是调查ID。我想创建令牌并插入limesurvey令牌表。
我想用django创建令牌。我需要一个为每个调查创建多个表的模型。有没有办法在django中从一个模型创建多个表?
提前致谢