This commit is contained in:
aozhiwei 2022-01-27 18:39:52 +08:00
parent 2d73cd91e3
commit 6f15c7d5bb

View File

@ -35,8 +35,11 @@ CREATE TABLE `t_box_order` (
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id',
`state` int(11) NOT NULL DEFAULT '0' COMMENT 'state 0:待支付 1支付成功',
`bc_synced` int(11) NOT NULL DEFAULT '0' COMMENT '0:未上链 1:已上链',
`bc_minted` int(11) NOT NULL DEFAULT '0' COMMENT '0:还未生成token 1:已经生成token',
`bc_sync_count` int(11) NOT NULL DEFAULT '0' COMMENT '本节点同步次数',
`bc_sync_time` int(11) NOT NULL DEFAULT '0' COMMENT '本节点最后一次同步时间',
`bc_mint_count` int(11) NOT NULL DEFAULT '0' COMMENT '尝试生成token次数',
`bc_mint_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次生成token时间',
`bc_result` int(11) NOT NULL DEFAULT '0' COMMENT '区块链执行结果 0:失败 1:成功',
`bc_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT '块id',
`bc_fail_reason` varchar(255) NOT NULL DEFAULT '' COMMENT '原因',