调试优化

This commit is contained in:
暮光:城中城
2019-06-30 10:46:23 +08:00
parent 242ca36a7a
commit bdc8e7a959
8 changed files with 15 additions and 7 deletions

View File

@@ -39,6 +39,8 @@ ALTER TABLE `user_info` MODIFY COLUMN `del_flag` tinyint(4) NULL DEFAULT 0 COMME
ALTER TABLE `auth_info` ADD COLUMN `auth_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '权限类型 0=隐藏权限 1=可使用';
update auth_info set auth_type=1 where auth_name in('DOC_ALL', 'AUTH_MANAGE', 'AUTH_ASSIGN', 'USER_MANAGE');
-- 不需要
delete from auth_info where auth_name in('DOC_ALL', 'AUTH_MANAGE');
-- ------------------------全新的库:------------------------