LP#1863929 - Fix sample survey data.
authorChris Sharp <csharp@georgialibraries.org>
Fri, 21 Feb 2020 18:58:15 +0000 (13:58 -0500)
committerBill Erickson <berickxx@gmail.com>
Wed, 26 Feb 2020 19:17:21 +0000 (14:17 -0500)
Since we enter the surveys, questions, and answers with specified ID values
but don't set the values to one higher, testers were unable to enter survey
data.

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/tests/datasets/sql/surveys.sql

index f45de8d..c9c6566 100644 (file)
@@ -26,6 +26,10 @@ INSERT INTO action.survey_answer (id, question, answer) VALUES (16, 3, 'Redshirt
 INSERT INTO action.survey_answer (id, question, answer) VALUES (17, 3, 'TARDIS blue.');
 INSERT INTO action.survey_answer (id, question, answer) VALUES (18, 3, 'This is getting too silly - I quit.');
 
+SELECT SETVAL('action.survey_id_seq'::TEXT, 100);
+SELECT SETVAL('action.survey_question_id_seq'::TEXT, 100);
+SELECT SETVAL('action.survey_answer_id_seq'::TEXT, 100);
+
 /** for every user with an id not evenly divisible by 6, 
  *  add a randomized response for every question in the survey
  */