Browse Source

! PGSQL doesn't like MyISAM tables for some reason. Can't imagine that.

Signed-off-by: Peter Spicer <[email protected]>
Peter Spicer 11 years ago
parent
commit
f05904c2d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      other/install_2-1_postgresql.sql

+ 1 - 1
other/install_2-1_postgresql.sql

@@ -2114,7 +2114,7 @@ CREATE TABLE {$db_prefix}qanda (
   question varchar(255) NOT NULL default '',
   answers text NOT NULL,
   PRIMARY KEY (id_question)
-) ENGINE=MyISAM;
+);
 
 #
 # Indexes for table `qanda`