14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
import { DSQL_ForeignKeyType } from "../../types";
|
|
type Param = {
|
|
dbFullName: string;
|
|
tableName: string;
|
|
foreignKey: DSQL_ForeignKeyType;
|
|
fieldName: string;
|
|
errorLogs?: any[];
|
|
};
|
|
/**
|
|
* # Update table function
|
|
*/
|
|
export default function handleTableForeignKey({ dbFullName, tableName, foreignKey, errorLogs, fieldName, }: Param): Promise<void>;
|
|
export {};
|