15 lines
574 B
TypeScript
15 lines
574 B
TypeScript
import { DSQL_UniqueConstraintSchemaType } from "../../types";
|
|
type Param = {
|
|
tableName: string;
|
|
dbFullName: string;
|
|
tableUniqueConstraints: DSQL_UniqueConstraintSchemaType[];
|
|
};
|
|
/**
|
|
* Handle DATASQUIREL Table Unique Constraints
|
|
* ===================================================
|
|
* @description Iterate through each datasquirel schema
|
|
* table unique constraint(if available), and perform operations
|
|
*/
|
|
export default function handleUniqueConstraintsCreateDbFromSchema({ dbFullName, tableName, tableUniqueConstraints, }: Param): Promise<void>;
|
|
export {};
|