forked from element-plus/element-plus
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ 🌐 Update database types to use consistent naming
- Rename 'DATABASE_TYPE_POSTGRESQL' to 'DATABASE_TYPE_POSTGRES' - Update references to the renamed constant in multiple files - Add new database types: 'oracle', 'db2', 'cassandra', 'hive', 'clickhouse', 'snowflake', and 'kafka' to database configuration
- Loading branch information
Showing
17 changed files
with
198 additions
and
202 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,2 @@ | ||
export const DATABASE_TYPE_MONGO = 'mongo'; | ||
export const DATABASE_TYPE_MYSQL = 'mysql'; | ||
export const DATABASE_TYPE_POSTGRESQL = 'postgres'; | ||
export const DATABASE_TYPE_MSSQL = 'mssql'; | ||
export const DATABASE_TYPE_ELASTICSEARCH = 'elasticsearch'; | ||
export const DATABASE_TYPE_KAFKA = 'kafka'; | ||
export const DATABASE_TYPE_REDIS = 'redis'; | ||
|
||
export const DATABASE_STATUS_ONLINE = 'online'; | ||
export const DATABASE_STATUS_OFFLINE = 'offline'; | ||
|
||
export const DATABASE_CONNECT_TYPE_STANDARD = 'standard'; | ||
export const DATABASE_CONNECT_TYPE_URL = 'url'; | ||
export const DATABASE_CONNECT_TYPE_HOSTS = 'hosts'; |
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
Oops, something went wrong.