diff --git a/Data/update.sql b/Data/update.sql index ef1c96aeb..9cc0cdb92 100644 --- a/Data/update.sql +++ b/Data/update.sql @@ -1124,10 +1124,10 @@ CREATE TABLE `tab_reward_record` ( `relation_game_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '游戏id', `content` varchar(1000) COLLATE utf8mb4_bin NOT NULL DEFAULT '' COMMENT '事件内容', `money` double(11,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额', + `reward_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '奖惩时间', `remark` varchar(255) COLLATE utf8mb4_bin NOT NULL DEFAULT '' COMMENT '备注', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `creater_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建者ID', - `reward_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '奖惩时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;