]> git.mjollnir.org Git - moodle.git/commitdiff
Another Postgres install fix (this time it was using mdl_ instead of prefix_)
authorsam_marshall <sam_marshall>
Mon, 10 Apr 2006 09:55:31 +0000 (09:55 +0000)
committersam_marshall <sam_marshall>
Mon, 10 Apr 2006 09:55:31 +0000 (09:55 +0000)
question/type/essay/db/postgres7.sql

index b41fc1f68423ff73d9ebd389dd9c476a0babb258..57c594d56b62c254717053c80268f5f2bb50bf2f 100644 (file)
@@ -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,