examine service: correct type column enum

This commit is contained in:
Adam
2018-03-17 22:21:20 -04:00
parent c964dea76c
commit 53d8286db8

View File

@@ -48,7 +48,7 @@ public class ExamineService
private static final Logger logger = LoggerFactory.getLogger(ExamineService.class);
private static final String CREATE_EXAMINE = "CREATE TABLE IF NOT EXISTS `examine` (\n"
+ " `type` enum('OBJECT','NPC','ID','') NOT NULL,\n"
+ " `type` enum('OBJECT','NPC','ITEM') NOT NULL,\n"
+ " `id` int(11) NOT NULL,\n"
+ " `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n"
+ " `count` int(11) NOT NULL,\n"