Files
bun-mariadb/dist/lib/schema/recreate-table.d.ts
T

9 lines
319 B
TypeScript

import type { BUN_MARIADB_TableSchemaType, BunMariaDBConfig } from "../../types";
/**
* Full table rebuild using a temp-table swap (preserving rows when possible).
*/
export default function recreateTable({ table, config, }: {
table: BUN_MARIADB_TableSchemaType;
config?: BunMariaDBConfig;
}): Promise<void>;