diff --git a/sql/marketdb.sql b/sql/marketdb.sql index 23f92024..48da5cd2 100644 --- a/sql/marketdb.sql +++ b/sql/marketdb.sql @@ -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 '原因',