feat: postgresql 远程数据库支持 17.x 版本 (#6759)

pull/6765/head
ssongliu 2024-10-17 21:37:32 +08:00 committed by GitHub
parent 425892cfc4
commit 42907cd228
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -128,7 +128,7 @@ const onOpenDialog = async (
rowData: Partial<Database.DatabaseInfo> = {
name: '',
type: 'postgresql',
version: '16.x',
version: '17.x',
address: '',
port: 5432,
username: '',

View File

@ -27,6 +27,7 @@
</el-form-item>
<el-form-item :label="$t('database.version')" prop="version">
<el-radio-group v-model="dialogData.rowData!.version" @change="isOK = false">
<el-radio label="17.x" value="17.x" />
<el-radio label="16.x" value="16.x" />
<el-radio label="15.x" value="15.x" />
<el-radio label="14.x" value="14.x" />