Skip to content

Commit

Permalink
add auth server ddl
Browse files Browse the repository at this point in the history
  • Loading branch information
zgyzgyhero committed Jan 17, 2025
1 parent dd414f1 commit 873d431
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
SET FOREIGN_KEY_CHECKS = 0;
INSERT INTO auth_sys_authority (id,created_by,created_time,updated_by,updated_time,is_active,is_deleted,code,description,display_name,`scope`) values ('7587be1b7a10465cbc58daf5a81930c2','admin',NULL,'',NULL,1,0,'ADMIN_BASE_MIGRATION','','ADMIN_BASE_MIGRATION','GLOBAL');
INSERT INTO auth_sys_authority (id,created_by,created_time,updated_by,updated_time,is_active,is_deleted,code,description,display_name,`scope`) values ('83c18f834d044ae185f15ed5bc5e0003','umadmin',NULL,'',NULL,1,0,'ADMIN_SYSTEM_WORKFLOW_REPORT','','ADMIN_SYSTEM_WORKFLOW_REPORT','GLOBAL');
INSERT INTO auth_sys_role_authority (id,created_by,created_time,updated_by,updated_time,is_active,is_deleted,authority_code,authority_id,role_id,role_name) values ('011e19012f5d4f599f662c826d1139d3','admin',NULL,'admin','2025-01-15 18:14:16',1,0,'ADMIN_BASE_MIGRATION','7587be1b7a10465cbc58daf5a81930c2','2c9280827019695c017019ac974f001c','SUPER_ADMIN');
INSERT INTO auth_sys_role_authority (id,created_by,created_time,updated_by,updated_time,is_active,is_deleted,authority_code,authority_id,role_id,role_name) values ('2602ed2419dd409d939e09b2cadbb780','umadmin',NULL,'admin','2025-01-15 18:14:16',1,0,'ADMIN_SYSTEM_WORKFLOW_REPORT','83c18f834d044ae185f15ed5bc5e0003','2c9280827019695c017019ac974f001c','SUPER_ADMIN');
SET FOREIGN_KEY_CHECKS = 1;
1 change: 1 addition & 0 deletions wecube-wiki/docs/4.4.0升级部署文档.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ docker pull ccr.ccs.tencentyun.com/webankpartners/wecube-portal:v4.4.0
```
docker pull ccr.ccs.tencentyun.com/webankpartners/platform-auth-server:v4.4.0
```
- 升级ddl: https://github.com/WeBankPartners/wecube-platform/blob/master/platform-auth-server/deploy/db/upgrade/wecube_platform_auth_4.4.0.sql

#### platform-gateway:
```
Expand Down

0 comments on commit 873d431

Please sign in to comment.