This commit is contained in:
hujiabin 2024-07-16 12:02:21 +08:00
parent 84b6b444df
commit 1044c424b0
2 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ CREATE TABLE `t_hero_skin` (
`skin_id` int(11) NOT NULL DEFAULT '0' COMMENT '英雄皮肤id',
`hero_id` int(11) NOT NULL DEFAULT '0' COMMENT '英雄id',
`skin_state` int(11) NOT NULL DEFAULT '0' COMMENT '英雄皮肤状态 0=封装1=解封',
`used` int(11) NOT NULL DEFAULT '0' COMMENT '使用状态 0=未使用1=使用中',
`get_from` int(11) NOT NULL DEFAULT '0' COMMENT '获得方式 0 = 系统赠送 1 = 金币购买',
`consume_num` int(11) NOT NULL DEFAULT '0' COMMENT '消耗货币的具体数量',
`try_expire_at` int(11) NOT NULL DEFAULT '0' COMMENT '试用截止时间',