typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
14 lines (13 loc) • 336 B
TypeScript
/**
* Creates a new migration file.
*/
export declare class MigrationCreateCommand {
command: string;
describe: string;
builder(yargs: any): any;
handler(argv: any): Promise<void>;
/**
* Gets contents of the migration file.
*/
protected static getTemplate(name: string, timestamp: number): string;
}