Fixed syntax error (extra comma) in Postgres version of quiz sql

This commit is contained in:
sam_marshall
2006-04-10 09:48:47 +00:00
parent 3f763c86cf
commit 3a2c772f4e
+1 -1
View 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);