1
This commit is contained in:
parent
a5f1bad99b
commit
d26706ed4d
@ -796,6 +796,7 @@ CREATE TABLE `t_transaction` (
|
|||||||
`item_uniid` bigint NOT NULL DEFAULT '0' COMMENT '道具uniid',
|
`item_uniid` bigint NOT NULL DEFAULT '0' COMMENT '道具uniid',
|
||||||
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id',
|
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id',
|
||||||
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'status',
|
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'status',
|
||||||
|
`client_result` mediumblob COMMENT 'client_result',
|
||||||
`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`),
|
||||||
|
@ -56,7 +56,9 @@ class Transaction extends BaseModel {
|
|||||||
'token_type' => $tokenType,
|
'token_type' => $tokenType,
|
||||||
'item_uniid' => $itemUniId,
|
'item_uniid' => $itemUniId,
|
||||||
'item_id' => $itemId,
|
'item_id' => $itemId,
|
||||||
'status' => self::CREATED_STATUS
|
'status' => self::CREATED_STATUS,
|
||||||
|
'createtime' => myself()->_getNowTime(),
|
||||||
|
'modifytime' => myself()->_getNowTime(),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user