This commit is contained in:
aozhiwei 2024-04-13 17:42:51 +08:00
parent 5527657f31
commit d8f5577ac2

View File

@ -40,11 +40,15 @@ DROP TABLE IF EXISTS `t_mail`;
CREATE TABLE `t_mail` (
`idx` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`mail_id` bigint NOT NULL COMMENT '邮件id',
`mail_type` int(11) NOT NULL DEFAULT '0' COMMENT '邮件类型',
`subject` mediumblob COMMENT 'subject',
`content` mediumblob COMMENT '消息内容',
`reciver` varchar(60) CHARACTER SET utf8 NOT NULL COMMENT '收件人',
`attachments` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT '附件',
`deleted` int(11) NOT NULL DEFAULT '0' COMMENT '是否已删除',
`sendtime` int(11) NOT NULL DEFAULT '0' COMMENT '发送时间',
`user_reg_start_time` int(11) NOT NULL DEFAULT '0' COMMENT '用户注册开始时间',
`user_reg_start_end` int(11) NOT NULL DEFAULT '0' COMMENT '用户注册结束时间',
`expiretime` int(11) NOT NULL DEFAULT '0' COMMENT '过期时间',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',