1
This commit is contained in:
parent
b17defa171
commit
386b51799b
@ -1424,6 +1424,7 @@ CREATE TABLE `t_market` (
|
|||||||
`update_time` int(11) COMMENT 'update_time',
|
`update_time` int(11) COMMENT 'update_time',
|
||||||
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'status',
|
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'status',
|
||||||
`activated` int(11) NOT NULL DEFAULT '0' COMMENT 'activated',
|
`activated` int(11) NOT NULL DEFAULT '0' COMMENT 'activated',
|
||||||
|
`selltime` int(11) COMMENT 'selltime',
|
||||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||||||
PRIMARY KEY (`idx`),
|
PRIMARY KEY (`idx`),
|
||||||
|
@ -206,7 +206,7 @@ class MarketController extends BaseAuthedController {
|
|||||||
'seller' => $row['seller'],
|
'seller' => $row['seller'],
|
||||||
'currency' => $row['currency'],
|
'currency' => $row['currency'],
|
||||||
'price' => $row['update_price'] ? $row['update_price'] : $row['price'],
|
'price' => $row['update_price'] ? $row['update_price'] : $row['price'],
|
||||||
'selltime' => $row['createtime'],
|
'selltime' => $row['selltime'],
|
||||||
'updatetime' => $row['createtime'],
|
'updatetime' => $row['createtime'],
|
||||||
);
|
);
|
||||||
$nftDb = Nft::getNft($row['token_id']);
|
$nftDb = Nft::getNft($row['token_id']);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user