|
|
|
@ -2,6 +2,14 @@
|
|
|
|
|
delete from core_user t where not find_in_set(t.code, 'admin,超级管理员') or t.code is null;
|
|
|
|
|
update core_user t set t.login_count = 0;
|
|
|
|
|
|
|
|
|
|
-- 菜单role和用户关系表
|
|
|
|
|
delete from core_user_role t where t.user_id not in (
|
|
|
|
|
select id from core_user t where find_in_set(t.code, 'admin,超级管理员')
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- 机构表
|
|
|
|
|
delete from core_org t where not (t.id = 1 or t.`name` = '金融虚拟仿真实验平台');
|
|
|
|
|
|
|
|
|
|
-- 课程标签
|
|
|
|
|
truncate table course_label;
|
|
|
|
|
INSERT INTO `course_label` (`course_label_id`, `course_label_type`, `course_label_name`, `course_label_status`, `org_id`, `user_id`, `add_type`) VALUES (3, '应用课程类', '财会大数据', 1, 1, 1, 'ADMIN_ADD');
|
|
|
|
|