20 lines
734 B
TypeScript
20 lines
734 B
TypeScript
type Param = {
|
|
dbFullName: string;
|
|
tableName: string;
|
|
tableSchema: import("../../types").DSQL_TableSchemaType;
|
|
tableNameFull?: string;
|
|
tableInfoArray: import("../../types").DSQL_FieldSchemaType[];
|
|
userId?: number | string | null;
|
|
dbSchema: import("../../types").DSQL_DatabaseSchemaType[];
|
|
tableIndexes?: import("../../types").DSQL_IndexSchemaType[];
|
|
clone?: boolean;
|
|
tableIndex?: number;
|
|
childDb?: boolean;
|
|
recordedDbEntry?: any;
|
|
};
|
|
/**
|
|
* # Update table function
|
|
*/
|
|
export default function updateTable({ dbFullName, tableName, tableInfoArray, userId, dbSchema, tableIndexes, tableSchema, clone, childDb, tableIndex, tableNameFull, recordedDbEntry, }: Param): Promise<any>;
|
|
export {};
|