http-service: set kc table engine to MEMORY

This commit is contained in:
Adam
2018-12-08 22:42:21 -05:00
parent f702a0a4a5
commit 5dce23a9cc

View File

@@ -41,7 +41,7 @@ public class KillCountService
" `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),\n" +
" UNIQUE KEY `name` (`name`, `boss`),\n" +
" KEY `time` (`time`)\n" +
") ENGINE=InnoDB;";
") ENGINE=MEMORY;";
private final Sql2o sql2o;