Updates
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import type { BUN_MARIADB_TableSchemaType, BunMariaDBConfig } from "../../types";
|
||||
type UniqueConstraintDesired = {
|
||||
name: string;
|
||||
columns: string[];
|
||||
};
|
||||
export declare function grabDesiredUniqueConstraints(table: BUN_MARIADB_TableSchemaType): UniqueConstraintDesired[];
|
||||
export default function syncUniqueConstraints({ table, config, }: {
|
||||
table: BUN_MARIADB_TableSchemaType;
|
||||
config?: BunMariaDBConfig;
|
||||
}): Promise<void>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user