Index: lams_tool_assessment/db/sql/create_lams_tool_assessment.sql =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/db/sql/create_lams_tool_assessment.sql,v diff -u -r1.14 -r1.15 --- lams_tool_assessment/db/sql/create_lams_tool_assessment.sql 15 Dec 2009 13:58:57 -0000 1.14 +++ lams_tool_assessment/db/sql/create_lams_tool_assessment.sql 26 Feb 2010 05:05:06 -0000 1.15 @@ -37,7 +37,8 @@ content_id bigint unique, allow_question_feedback tinyint, allow_overall_feedback tinyint, - allow_right_wrong_answers tinyint, + allow_right_answers tinyint, + allow_wrong_answers tinyint, allow_grades_after_attempt tinyint, allow_history_responses tinyint, questions_per_page integer DEFAULT 0, @@ -52,7 +53,7 @@ question text, sequence_id integer, default_grade integer DEFAULT 1, - penalty_factor float DEFAULT 0.1, + penalty_factor float DEFAULT 0, general_feedback text, feedback text, multiple_answers_allowed tinyint DEFAULT 0, @@ -169,7 +170,7 @@ INSERT INTO `tl_laasse10_assessment` (`uid`, `create_date`, `update_date`, `create_by`, `title`, `run_offline`, `instructions`, `online_instructions`, `offline_instructions`, `content_in_use`, `define_later`, `content_id`, `allow_question_feedback`, - `allow_overall_feedback`, `allow_right_wrong_answers`, `allow_grades_after_attempt`, `allow_history_responses`, `shuffled`) VALUES - (1,NULL,NULL,NULL,'Assessment','0','Instructions ',null,null,0,0,${default_content_id},0,0,0,0,0,0); + `allow_overall_feedback`, `allow_right_answers`, `allow_wrong_answers`, `allow_grades_after_attempt`, `allow_history_responses`, `shuffled`) VALUES + (1,NULL,NULL,NULL,'Assessment','0','Instructions ',null,null,0,0,${default_content_id},0,0,0,0,0,0,0); SET FOREIGN_KEY_CHECKS=1;