Skip to content

Commit

Permalink
Another Postgres install fix (this time it was using mdl_ instead of …
Browse files Browse the repository at this point in the history
…prefix_)
  • Loading branch information
sam_marshall committed Apr 10, 2006
1 parent 3a2c772 commit 96463e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions question/type/essay/db/postgres7.sql
Expand Up @@ -5,7 +5,7 @@
# Table structure for table prefix_question_essay # Table structure for table prefix_question_essay
# #


CREATE TABLE mdl_question_essay ( CREATE TABLE prefix_question_essay (
id serial NOT NULL, id serial NOT NULL,
question integer NOT NULL DEFAULT 0, question integer NOT NULL DEFAULT 0,
answer varchar(255) NOT NULL DEFAULT '' answer varchar(255) NOT NULL DEFAULT ''
Expand All @@ -18,7 +18,7 @@ CREATE TABLE mdl_question_essay (
# Table structure for table prefix_question_essay_states # Table structure for table prefix_question_essay_states
# #


CREATE TABLE mdl_question_essay_states ( CREATE TABLE prefix_question_essay_states (
id serial NOT NULL, id serial NOT NULL,
stateid integer NOT NULL DEFAULT 0, stateid integer NOT NULL DEFAULT 0,
graded integer NOT NULL DEFAULT 0, graded integer NOT NULL DEFAULT 0,
Expand Down

0 comments on commit 96463e6

Please sign in to comment.