mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-05-02 23:03:58 +00:00
fix
This commit is contained in:
@@ -44,8 +44,12 @@ class Analyser extends DatabaseAnalyser {
|
|||||||
...col,
|
...col,
|
||||||
...extractDataType(col.dataType),
|
...extractDataType(col.dataType),
|
||||||
})),
|
})),
|
||||||
primaryKey: { columns: (table.primaryKeyColumns || '').split(',').map((columnName) => ({ columnName })) },
|
primaryKey: table.primaryKeyColumns
|
||||||
sortingKey: { columns: (table.sortingKeyColumns || '').split(',').map((columnName) => ({ columnName })) },
|
? { columns: (table.primaryKeyColumns || '').split(',').map((columnName) => ({ columnName })) }
|
||||||
|
: null,
|
||||||
|
sortingKey: table.sortingKeyColumns
|
||||||
|
? { columns: (table.sortingKeyColumns || '').split(',').map((columnName) => ({ columnName })) }
|
||||||
|
: null,
|
||||||
foreignKeys: [],
|
foreignKeys: [],
|
||||||
})),
|
})),
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user