This commit is contained in:
aozhiwei 2024-02-07 20:51:21 +08:00
parent 356ba6a1a6
commit 74bc379cb3

View File

@ -45,9 +45,9 @@ CREATE TABLE `t_mailbox` (
`subject` mediumblob COMMENT 'subject',
`content` mediumblob COMMENT '消息内容',
`attachments` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT '附件',
`type` int(11) NOT NULL DEFAULT '0' COMMENT 'mailtype',
`sub_type` int(11) NOT NULL DEFAULT '0' COMMENT 'mailsubtype',
`user_type` int(11) NOT NULL DEFAULT '0' COMMENT 'usertype',
`type` int(11) NOT NULL DEFAULT '0' COMMENT 'type',
`sub_type` int(11) NOT NULL DEFAULT '0' COMMENT 'sub_type',
`user_type` int(11) NOT NULL DEFAULT '0' COMMENT 'user_type',
`deleted` int(11) NOT NULL DEFAULT '0' COMMENT '是否已删除',
`sendtime` int(11) NOT NULL DEFAULT '0' COMMENT '发送时间',
`expiretime` int(11) NOT NULL DEFAULT '0' COMMENT '过期时间',