Files
bun-mariadb/dist/lib/schema/sync-primary-key.d.ts
T
2026-07-30 07:19:07 +01:00

7 lines
333 B
TypeScript

import type { BUN_MARIADB_TableSchemaType, BunMariaDBConfig } from "../../types";
export declare function grabDesiredPrimaryKeyColumns(table: BUN_MARIADB_TableSchemaType): string[];
export default function syncPrimaryKey({ table, config, }: {
table: BUN_MARIADB_TableSchemaType;
config?: BunMariaDBConfig;
}): Promise<void>;