Interface MigrationResult

Migration result with detailed statistics.

interface MigrationResult {
    success: boolean;
    tablesImported: number;
    rowsImported: number;
    errors?: string[];
    duration: number;
    sourceAdapter: string;
    targetAdapter: string;
    verification?: VerificationResult;
}

Hierarchy (view full)

Properties

success: boolean
tablesImported: number
rowsImported: number
errors?: string[]
duration: number
sourceAdapter: string
targetAdapter: string
verification?: VerificationResult