This commit is contained in:
songliang 2023-07-14 15:58:28 +08:00
parent 17c8cd6478
commit 2e8273916e
2 changed files with 2 additions and 2 deletions

View File

@ -1346,7 +1346,7 @@ CREATE TABLE `t_market_transaction_record` (
`buyer` varchar(60) NOT NULL COMMENT '买家',
`token_id` varchar(60) NOT NULL COMMENT 'tokenid',
`item_id` int(11) DEFAULT NULL COMMENT '如果有,说明是中心化道具交易',
`amount` int(11) NOT NULL COMMENT '堆叠数量',
`amount` bigint(11) NOT NULL COMMENT '堆叠数量',
`name` varchar(64) NOT NULL COMMENT '商品名称',
`type` int(11) NOT NULL COMMENT '商品类型',
PRIMARY KEY (`idx`),

View File

@ -49,7 +49,7 @@ CREATE TABLE `t_market_transaction_record` (
`buyer` varchar(60) NOT NULL COMMENT '买家',
`token_id` varchar(60) NOT NULL COMMENT 'tokenid',
`item_id` int(11) DEFAULT NULL COMMENT '如果有,说明是中心化道具交易',
`amount` int(11) NOT NULL COMMENT '堆叠数量',
`amount` bigint(20) NOT NULL COMMENT '堆叠数量',
`name` varchar(64) NOT NULL COMMENT '商品名称',
`type` int(11) NOT NULL COMMENT '商品类型',
PRIMARY KEY (`idx`),