mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-04 13:20:19 +08:00
Support more DBs in syncer.
This commit is contained in:
@ -58,6 +58,7 @@ class SyncerListPage extends React.Component {
|
||||
port: 3306,
|
||||
user: "root",
|
||||
password: "123456",
|
||||
databaseType: "mysql",
|
||||
database: "dbName",
|
||||
table: "tableName",
|
||||
tableColumns: [],
|
||||
@ -176,6 +177,13 @@ class SyncerListPage extends React.Component {
|
||||
width: '120px',
|
||||
sorter: (a, b) => a.password.localeCompare(b.password),
|
||||
},
|
||||
{
|
||||
title: i18next.t("syncer:Database type"),
|
||||
dataIndex: 'databaseType',
|
||||
key: 'databaseType',
|
||||
width: '120px',
|
||||
sorter: (a, b) => a.databaseType.localeCompare(b.databaseType),
|
||||
},
|
||||
{
|
||||
title: i18next.t("syncer:Database"),
|
||||
dataIndex: 'database',
|
||||
|
Reference in New Issue
Block a user