This commit is contained in:
aozhiwei 2022-04-02 13:31:23 +08:00
parent 98eeeb8ce8
commit f524458d4b

View File

@ -54,20 +54,39 @@ CREATE TABLE `t_box_order` (
`payment_token_address` varchar(60) NOT NULL DEFAULT '' COMMENT '货币地址', `payment_token_address` varchar(60) NOT NULL DEFAULT '' COMMENT '货币地址',
`nonce` varchar(60) NOT NULL DEFAULT '' COMMENT 'nonce', `nonce` varchar(60) NOT NULL DEFAULT '' COMMENT 'nonce',
`signature` varchar(255) NOT NULL DEFAULT '' COMMENT '签名', `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_paid` int(11) NOT NULL DEFAULT '0' COMMENT '是否已支付',
`bc_pay_count` 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_time` int(11) NOT NULL DEFAULT '0' COMMENT '本节点最后一次支付时间',
`bc_pay_prepare_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT '支付准备前块id', `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_success_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT '支付成功块id',
`bc_pay_confirm_time` int(11) NOT NULL DEFAULT '0' COMMENT '支付成功被确认时间', `bc_pay_confirm_time` int(11) NOT NULL DEFAULT '0' COMMENT '支付成功被确认时间',
`bc_minted` int(11) NOT NULL DEFAULT '0' COMMENT 'nft是否已创建', `bc_minted1` int(11) NOT NULL DEFAULT '0' COMMENT 'nft是否已创建',
`bc_mint_count` int(11) NOT NULL DEFAULT '0' COMMENT '生成nft次数', `bc_mint_need1` int(11) NOT NULL DEFAULT '0' COMMENT 'need',
`bc_mint_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次生成nft时间', `bc_mint_itemid1` int(11) NOT NULL DEFAULT '0' COMMENT '道具id',
`bc_mint_prepare_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成准备前块id', `bc_mint_token_type1` int(11) NOT NULL DEFAULT '0' COMMENT 'nft类型 0:英雄 1:枪支 2:芯片',
`bc_mint_success_block_number` varchar(60) NOT NULL DEFAULT '' COMMENT 'nft生成成功块id', `bc_mint_count1` int(11) NOT NULL DEFAULT '0' COMMENT '生成nft次数',
`bc_mint_confirm_time` 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` int(11) NOT NULL DEFAULT '0' COMMENT '挂起',
`suspend_reason` mediumblob COMMENT '挂起原因', `suspend_reason` mediumblob COMMENT '挂起原因',
`done` int(11) NOT NULL DEFAULT '0' COMMENT '是否已完成', `done` int(11) NOT NULL DEFAULT '0' COMMENT '是否已完成',