From a10a21c12bcdc60afce4cd5ac6f5585c17046ce0 Mon Sep 17 00:00:00 2001 From: yulingwei <2436953959@qq.com> Date: Mon, 10 Feb 2020 10:04:54 +0800 Subject: [PATCH] update sql remark --- Data/update.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/update.sql b/Data/update.sql index fb9c70756..ec88bb531 100644 --- a/Data/update.sql +++ b/Data/update.sql @@ -1114,7 +1114,7 @@ ADD COLUMN `auto_review_withdraw_updated_time` int(10) NOT NULL DEFAULT 0 COMMEN ALTER TABLE `tab_promote` ADD INDEX `auto_review_withdraw_status`(`auto_review_withdraw_status`) USING BTREE; --- 奖罚记录 +-- 2020-02-10 yulingwei 奖罚记录 CREATE TABLE `tab_reward_record` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `reward_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '奖罚类型 1奖励 2惩罚', @@ -1148,7 +1148,7 @@ CREATE TABLE `tab_company_info` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='内部公司信息'; --- 推广工会管理 新增属性类型 +-- 2020-02-10 yulingwei 推广工会管理 新增属性类型 ALTER TABLE `tab_promote_belong` MODIFY COLUMN `company_belong` tinyint(1) UNSIGNED NOT NULL DEFAULT 3 COMMENT '工会归属:0-内团;1-外团 2-分发联盟 3 无' AFTER `verify_status`, MODIFY COLUMN `company_relation` tinyint(1) UNSIGNED NOT NULL DEFAULT 2 COMMENT '工会关系:0-自主开发及维护;1-只维护 2 无' AFTER `company_belong`;