rwth-acis / mobsos-surveys

A simple survey management service and Web application, being part of the MobSOS toolkit.
Other
7 stars 10 forks source link

change qkey varchar length #12

Closed Navidda closed 3 years ago

Navidda commented 3 years ago

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