Skip to content

Commit

Permalink
Update V1__vhr.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
lenve committed Apr 28, 2020
1 parent 877648f commit 2c565e0
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@ CREATE TABLE `appraise` (
DROP TABLE IF EXISTS `mail_send_log`;

CREATE TABLE `mail_send_log` (
`msgId` varchar(255) DEFAULT NULL,
`msgId` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`empId` int(11) DEFAULT NULL,
`status` int(11) DEFAULT '0' COMMENT '0发送中,1发送成功,2发送失败',
`routeKey` varchar(255) DEFAULT NULL,
`exchange` varchar(255) DEFAULT NULL,
`count` int(11) DEFAULT '0' COMMENT '重试次数',
`tryTime` date DEFAULT NULL COMMENT '第一次重试时间',
`createTime` date DEFAULT NULL,
`updateTime` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
`routeKey` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`exchange` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`count` int(11) DEFAULT NULL COMMENT '重试次数',
`tryTime` datetime DEFAULT NULL COMMENT '第一次重试时间',
`createTime` datetime DEFAULT NULL,
`updateTime` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*Data for the table `appraise` */

/*Table structure for table `department` */
Expand Down

0 comments on commit 2c565e0

Please sign in to comment.