From 8b33a52cd000fa69985ad6eb03a7d5c289227841 Mon Sep 17 00:00:00 2001 From: zhengchanglong Date: Thu, 6 Feb 2020 16:08:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A5=96=E7=BD=9A=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E5=AD=97=E6=AE=B5=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Data/update.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;