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