Skip to content

Commit

Permalink
Change quartz_log engine to MyISAM (elunez#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
wtune authored Apr 23, 2020
1 parent c847209 commit 95e9128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/eladmin.sql
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ CREATE TABLE `quartz_log` (
`params` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`time` bigint(20) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 288 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '定时任务日志' ROW_FORMAT = Compact;
) ENGINE = MyISAM AUTO_INCREMENT = 288 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '定时任务日志' ROW_FORMAT = Compact;

-- ----------------------------
-- Table structure for role
Expand Down

0 comments on commit 95e9128

Please sign in to comment.