From f524458d4b5cb23b831180ef96e40b4b90a1dd8a Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sat, 2 Apr 2022 13:31:23 +0800 Subject: [PATCH] 1 --- sql/marketdb.sql | 35 +++++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/sql/marketdb.sql b/sql/marketdb.sql index 8b019bee..e6ca9f7f 100644 --- a/sql/marketdb.sql +++ b/sql/marketdb.sql @@ -54,20 +54,39 @@ CREATE TABLE `t_box_order` ( `payment_token_address` varchar(60) NOT NULL DEFAULT '' COMMENT '货币地址', `nonce` varchar(60) NOT NULL DEFAULT '' COMMENT 'nonce', `signature` varchar(255) NOT NULL DEFAULT '' COMMENT '签名', - `item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id', - `token_type` int(11) NOT NULL DEFAULT '0' COMMENT 'nft类型 0:英雄 1:枪支 2:芯片', `bc_paid` int(11) NOT NULL DEFAULT '0' COMMENT '是否已支付', `bc_pay_count` int(11) NOT NULL DEFAULT '0' COMMENT '支付次数', `bc_pay_time` int(11) NOT NULL DEFAULT '0' COMMENT '本节点最后一次支付时间', `bc_pay_prepare_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT '支付准备前块id', `bc_pay_success_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT '支付成功块id', `bc_pay_confirm_time` int(11) NOT NULL DEFAULT '0' COMMENT '支付成功被确认时间', - `bc_minted` int(11) NOT NULL DEFAULT '0' COMMENT 'nft是否已创建', - `bc_mint_count` int(11) NOT NULL DEFAULT '0' COMMENT '生成nft次数', - `bc_mint_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次生成nft时间', - `bc_mint_prepare_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成准备前块id', - `bc_mint_success_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成成功块id', - `bc_mint_confirm_time` int(11) NOT NULL DEFAULT '0' COMMENT 'nft生成被确认时间', + `bc_minted1` int(11) NOT NULL DEFAULT '0' COMMENT 'nft是否已创建', + `bc_mint_need1` int(11) NOT NULL DEFAULT '0' COMMENT 'need', + `bc_mint_itemid1` int(11) NOT NULL DEFAULT '0' COMMENT '道具id', + `bc_mint_token_type1` int(11) NOT NULL DEFAULT '0' COMMENT 'nft类型 0:英雄 1:枪支 2:芯片', + `bc_mint_count1` int(11) NOT NULL DEFAULT '0' COMMENT '生成nft次数', + `bc_mint_time1` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次生成nft时间', + `bc_mint_prepare_block_number1` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成准备前块id', + `bc_mint_success_block_number1` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成成功块id', + `bc_mint_confirm_time1` int(11) NOT NULL DEFAULT '0' COMMENT 'nft生成被确认时间', + `bc_minted2` int(11) NOT NULL DEFAULT '0' COMMENT 'nft是否已创建', + `bc_mint_need2` int(11) NOT NULL DEFAULT '0' COMMENT 'need', + `bc_mint_itemid2` int(11) NOT NULL DEFAULT '0' COMMENT '道具id', + `bc_mint_token_type2` int(11) NOT NULL DEFAULT '0' COMMENT 'nft类型 0:英雄 1:枪支 2:芯片', + `bc_mint_count2` int(11) NOT NULL DEFAULT '0' COMMENT '生成nft次数', + `bc_mint_time2` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次生成nft时间', + `bc_mint_prepare_block_number2` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成准备前块id', + `bc_mint_success_block_number2` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成成功块id', + `bc_mint_confirm_time2` int(11) NOT NULL DEFAULT '0' COMMENT 'nft生成被确认时间', + `bc_minted3` int(11) NOT NULL DEFAULT '0' COMMENT 'nft是否已创建', + `bc_mint_need3` int(11) NOT NULL DEFAULT '0' COMMENT 'need', + `bc_mint_itemid3` int(11) NOT NULL DEFAULT '0' COMMENT '道具id', + `bc_mint_token_type3` int(11) NOT NULL DEFAULT '0' COMMENT 'nft类型 0:英雄 1:枪支 2:芯片', + `bc_mint_count3` int(11) NOT NULL DEFAULT '0' COMMENT '生成nft次数', + `bc_mint_time3` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次生成nft时间', + `bc_mint_prepare_block_number3` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成准备前块id', + `bc_mint_success_block_number3` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成成功块id', + `bc_mint_confirm_time3` int(11) NOT NULL DEFAULT '0' COMMENT 'nft生成被确认时间', `suspend` int(11) NOT NULL DEFAULT '0' COMMENT '挂起', `suspend_reason` mediumblob COMMENT '挂起原因', `done` int(11) NOT NULL DEFAULT '0' COMMENT '是否已完成',