15 lines
489 B
TypeScript
15 lines
489 B
TypeScript
import { DSQL_IndexSchemaType } from "../../types";
|
|
type Param = {
|
|
tableName: string;
|
|
dbFullName: string;
|
|
indexes: DSQL_IndexSchemaType[];
|
|
};
|
|
/**
|
|
* Handle DATASQUIREL Table Indexes
|
|
* ===================================================
|
|
* @description Iterate through each datasquirel schema
|
|
* table index(if available), and perform operations
|
|
*/
|
|
export default function handleIndexescreateDbFromSchema({ dbFullName, tableName, indexes, }: Param): Promise<void>;
|
|
export {};
|