mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-23 09:16:01 +00:00
10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
import { TableInfo } from '@dbgate/types';
|
|
import _ from 'lodash';
|
|
|
|
export function prepareTableForImport(table: TableInfo): TableInfo {
|
|
const res = _.cloneDeep(table);
|
|
res.foreignKeys = [];
|
|
if (res.primaryKey) res.primaryKey.constraintName = null;
|
|
return res;
|
|
}
|