-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: oucb <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,8 @@ | |
"control": "text", | ||
"type": "string", | ||
"hint": { | ||
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F", | ||
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F" | ||
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters, and you need to re-enter the password when editing. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F", | ||
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符,并且编辑时需要重新输入密码。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F" | ||
}, | ||
"label": { | ||
"en_US": "server address", | ||
|
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 |
---|---|---|
|
@@ -37,8 +37,8 @@ | |
"control": "text", | ||
"type": "string", | ||
"hint": { | ||
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F", | ||
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F" | ||
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters, and you need to re-enter the password when editing. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F", | ||
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符,并且编辑时需要重新输入密码。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F" | ||
}, | ||
"label": { | ||
"en_US": "Server address", | ||
|
@@ -186,11 +186,11 @@ | |
}, | ||
"indexFieldType": { | ||
"name": "indexFieldType", | ||
"default": "STRING", | ||
"default": "", | ||
"optional": true, | ||
"control": "select", | ||
"type": "string", | ||
"values": ["DATETIME", "INT", "FLOAT", "STRING"], | ||
"values": ["DATETIME", "INT"], | ||
"hint": { | ||
"en_US": "Column type for the indexField", | ||
"zh_CN": "索引字段的列类型" | ||
|