This commit is contained in:
aozhiwei 2024-09-12 16:59:28 +08:00
parent 0c2db2c1ce
commit aff6cb7f2c
2 changed files with 3 additions and 0 deletions

View File

@ -1923,4 +1923,5 @@ class VipInfo(object):
def __init__(self):
self.fields = [
['bind_passport_address', 0, '绑定的passport地址'],
['bind_email', 0, '绑定的email地址'],
]

View File

@ -417,6 +417,8 @@ CREATE TABLE `t_vip_bind` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址(小狐狸)',
`passport_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址(passport)',
`email` varchar(80) COMMENT 'email',
`lower_case_email` varchar(80) COMMENT 'lower_case_email',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`),