From 4473b200168c69a6ebbd42e5294eb8d7d3b5e03b Mon Sep 17 00:00:00 2001 From: zhengyongxing Date: Thu, 19 Dec 2019 11:29:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=9D=83=E9=99=90sql?= =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Data/update.sql | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Data/update.sql b/Data/update.sql index 18de63eb7..46354b68c 100644 --- a/Data/update.sql +++ b/Data/update.sql @@ -759,4 +759,10 @@ CREATE TABLE `tab_promote_count` ( KEY `new_user_count` (`new_user_count`) USING BTREE, KEY `active_user_count` (`active_user_count`) USING BTREE, KEY `pay_money_count` (`pay_money_count`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='总览推广员统计聚合'; \ No newline at end of file +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='总览推广员统计聚合'; + +--新增游戏聚合 2019-12-19 zyx +ALTER TABLE `sys_auth_group` +ADD COLUMN `data_empower_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '数据权限 1 全部 2 部分数据 3 自己底下的会长' AFTER `rules`; +ALTER TABLE `platform`.`sys_auth_group` +ADD COLUMN `data_president` longtext NULL COMMENT '会长数据' AFTER `data_empower_type`; \ No newline at end of file