sequelize-typescript-model-migration
Version:
Migration tool for sequelize-typescript
5 lines (4 loc) • 322 B
TypeScript
import { IExtractedModel } from '../types';
export declare const generateMigrationCommands: (template: string, upCommands: string[], downCommands: string[]) => string;
export declare const genUpCommands: (model: IExtractedModel) => string[][];
export declare const genDownCommands: (model: IExtractedModel) => string[][];