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

5 lines
381 B
TypeScript

import type { BUN_MARIADB_FieldSchemaType } from "../../types";
export declare function defaultForeignKeyName(tableName: string, fieldName: string): string;
export declare function resolveForeignKeyName(field: BUN_MARIADB_FieldSchemaType, tableName: string): string;
export default function buildForeignKeyConstraint(field: BUN_MARIADB_FieldSchemaType, tableName: string): string;