Remove 'ENGINE=InnoDB' specification from tables that we create. Use

the system's default table specification.  Fixes ticket #597.
This commit is contained in:
Bharat Mediratta
2009-08-27 15:47:54 -07:00
parent 75c098204f
commit 4828db003f
13 changed files with 57 additions and 53 deletions

View File

@@ -44,7 +44,7 @@ class comment_installer {
`text` text,
`updated` int(9) NOT NULL,
PRIMARY KEY (`id`))
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
DEFAULT CHARSET=utf8;");
block_manager::add("dashboard_center", "comment", "recent_comments");
module::set_var("comment", "spam_caught", 0);