Skip to content

Commit 737f665

Browse files
committed
Fix DB engine
1 parent 0e29480 commit 737f665

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

featherbb/Model/Install.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class Install
9999
`user` int(11) DEFAULT NULL,
100100
`group` int(11) DEFAULT NULL,
101101
PRIMARY KEY (`id`)
102-
) ENGINE=InnoDB DEFAULT CHARSET=utf8;",
102+
) ENGINE=MyISAM DEFAULT CHARSET=utf8;",
103103
'plugins' => "CREATE TABLE IF NOT EXISTS %t% (
104104
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
105105
`name` varchar(200) NOT NULL DEFAULT '',
@@ -132,7 +132,7 @@ class Install
132132
`group` int(10) unsigned DEFAULT NULL,
133133
`default` tinyint(1) DEFAULT NULL,
134134
PRIMARY KEY (`id`)
135-
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;",
135+
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;",
136136
'reports' => "CREATE TABLE IF NOT EXISTS %t% (
137137
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
138138
`post_id` int(10) unsigned NOT NULL DEFAULT '0',

0 commit comments

Comments
 (0)