]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed syntax error (extra comma) in Postgres version of quiz sql
authorsam_marshall <sam_marshall>
Mon, 10 Apr 2006 09:48:47 +0000 (09:48 +0000)
committersam_marshall <sam_marshall>
Mon, 10 Apr 2006 09:48:47 +0000 (09:48 +0000)
mod/quiz/db/postgres7.sql

index 5e42aeddc758b823e8bbd6fbd4ed5dd5cf89b103..381e47d2777e74fba64b45c8af59e358dc609d5f 100644 (file)
@@ -166,7 +166,7 @@ CREATE TABLE prefix_question_sessions (
   newest integer NOT NULL default '0',
   newgraded integer NOT NULL default '0',
   sumpenalty real NOT NULL default '0',
-  comment text NOT NULL default '',
+  comment text NOT NULL default ''
 );
 
 CREATE UNIQUE INDEX prefix_question_sessions_attempt_idx ON prefix_question_sessions (attemptid,questionid);