The uuid.v4 which is called when creating a questionnaire, assigns a 36 char string to a question as a question id (qid ~ qkey). This causes a truncation error when sending responses to a questionnaire.
I also changed this column on the database using ALTER TABLE response MODIFY qkey VARCHAR(36) NOT NULL; command
The uuid.v4 which is called when creating a questionnaire, assigns a 36 char string to a question as a question id (qid ~ qkey). This causes a truncation error when sending responses to a questionnaire. I also changed this column on the database using
ALTER TABLE response MODIFY qkey VARCHAR(36) NOT NULL;
command