import { GeneratorCommand } from './GeneratorCommand'; export declare class MigrateMakeCommand extends GeneratorCommand { protected getStub(): string; protected getSuffix(): string; /** * Command name. The command will be registered using this name only. Make * sure their aren't any spaces inside the command name. */ static commandName: string; static description: string; /** * The name of the migration file. We use this to create the migration * file and generate the table name */ name: string; /** * Custom table name for creating a new table */ create: string; /** * Custom table name for altering an existing table */ table: string; handle(...args: any[]): Promise; }