sequelize-typescript-mysql-migration
Version:
Migration tool for sequelize-typescript with MySQL
5 lines (4 loc) • 367 B
TypeScript
export declare const genAddForeignKeyCommand: (tableName: string, key: any) => string;
export declare const genAddForeignKeysCommands: (tableName: string, keys: any) => string[];
export declare const genRemoveForeignKeyCommand: (tableName: string, key: string) => string;
export declare const genRemoveForeignKeysCommands: (tableName: string, keys: any) => string[];