Remove the "MyISAM" from the SQL scripts - this engine is outdated.

This commit is contained in:
Michael 2016-12-17 16:32:31 +00:00
parent 88075f4f83
commit 3f90814e30
2 changed files with 4 additions and 4 deletions

View file

@ -10,4 +10,4 @@ CREATE TABLE IF NOT EXISTS `mailstream_item` (
KEY `message-id` (`message-id`),
KEY `created` (`created`),
KEY `completed` (`completed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
) DEFAULT CHARSET=utf8 COLLATE=utf8_bin;