-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(authentication): 表名统一增加前缀防止重复
- Loading branch information
1 parent
b38462f
commit b9e0592
Showing
11 changed files
with
33 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...mu-authentication/src/main/resources/db/migration/postgresql/V1.3.8__alert_table_name.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
-- @formatter:off | ||
-- noinspection SqlConstantExpressionForFile | ||
-- noinspection SqlResolveForFile | ||
ALTER TABLE permission_paths RENAME TO mumu_permission_paths; | ||
ALTER TABLE permissions RENAME TO mumu_permissions; | ||
ALTER TABLE permissions_archived RENAME TO mumu_permissions_archived; | ||
ALTER TABLE role_paths RENAME TO mumu_role_paths; | ||
ALTER TABLE role_permissions RENAME TO mumu_role_permissions; | ||
ALTER TABLE roles RENAME TO mumu_roles; | ||
ALTER TABLE roles_archived RENAME TO mumu_roles_archived; | ||
ALTER TABLE user_roles RENAME TO mumu_user_roles; | ||
ALTER TABLE users RENAME TO mumu_users; | ||
ALTER TABLE users_archived RENAME TO mumu_users_archived; |