This commit is contained in:
aozhiwei 2024-08-09 17:55:35 +08:00
parent 8898ff429c
commit bd8b3c3ae0
2 changed files with 7 additions and 1 deletions

View File

@ -52,11 +52,17 @@ CREATE TABLE `t_mail` (
`user_reg_end_time` int(11) NOT NULL DEFAULT '0' COMMENT '用户注册结束时间',
`tag1` int(11) NOT NULL DEFAULT '0' COMMENT 'tag1',
`tag2` int(11) NOT NULL DEFAULT '0' COMMENT 'tag2',
`create_address` varchar(60) CHARACTER SET utf8 COMMENT '创建邮件的钱包地址',
`update_address` varchar(60) CHARACTER SET utf8 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 '修改时间',
UNIQUE KEY `unikey` (`unikey`),
UNIQUE KEY `mail_id` (`mail_id`),
KEY `idx_create_address` (`create_address`),
KEY `idx_update_address` (`update_address`),
KEY `idx_tag1` (`tag1`),
KEY `idx_tag2` (`tag2`),
PRIMARY KEY (`idx`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;

View File

@ -37,7 +37,7 @@ const (
)
const (
MAIL_TAG1_CUSTOM = 1
MAIL_TAG1_CUSTOM = 10
MAIL_TAG1_HERO = 100
MAIL_TAG1_GOLD_BULLION = 101
)