From: sam_marshall Date: Mon, 10 Apr 2006 09:55:31 +0000 (+0000) Subject: Another Postgres install fix (this time it was using mdl_ instead of prefix_) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=96463e677e0f7fbfba9244ed84e9b979e16a466b;p=moodle.git Another Postgres install fix (this time it was using mdl_ instead of prefix_) --- diff --git a/question/type/essay/db/postgres7.sql b/question/type/essay/db/postgres7.sql index b41fc1f684..57c594d56b 100644 --- a/question/type/essay/db/postgres7.sql +++ b/question/type/essay/db/postgres7.sql @@ -5,7 +5,7 @@ # Table structure for table prefix_question_essay # -CREATE TABLE mdl_question_essay ( +CREATE TABLE prefix_question_essay ( id serial NOT NULL, question integer NOT NULL DEFAULT 0, answer varchar(255) NOT NULL DEFAULT '' @@ -18,7 +18,7 @@ CREATE TABLE mdl_question_essay ( # Table structure for table prefix_question_essay_states # -CREATE TABLE mdl_question_essay_states ( +CREATE TABLE prefix_question_essay_states ( id serial NOT NULL, stateid integer NOT NULL DEFAULT 0, graded integer NOT NULL DEFAULT 0,