From 2030b60acfc4e4bfc6a028b6126ee92cce07f198 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Tue, 14 May 2024 19:40:00 +0200 Subject: [PATCH] posts.sql: make default board table engine InnoDB --- templates/posts.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/posts.sql b/templates/posts.sql index 070e687b..9c468c97 100755 --- a/templates/posts.sql +++ b/templates/posts.sql @@ -27,5 +27,5 @@ CREATE TABLE IF NOT EXISTS ``posts_{{ board }}`` ( KEY `time` (`time`), KEY `ip` (`ip`), KEY `list_threads` (`thread`, `sticky`, `bump`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ; + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;