import { MigrationsBaseCommand } from './MigrationsBaseCommand'; /** * The command is meant to migrate the database by execute migrations * in `up` direction. */ export declare class RunCommand extends MigrationsBaseCommand { private db; static commandName: string; static description: string; constructor(app: any, kernel: any, db: any); connection: string; force: boolean; dryRun: boolean; seed: boolean; /** * This command loads the application, since we need the runtime * to find the migration directories for a given connection */ static settings: { loadApp: boolean; }; /** * Handle command */ handle(): Promise; runSeed(): Promise; parse(argv: any): any; }