7 lines
333 B
TypeScript
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>;
|