Interface VerificationResult

Verification result after migration.

interface VerificationResult {
    passed: boolean;
    tableCounts: Record<string, {
        source: number;
        target: number;
        match: boolean;
    }>;
    errors?: string[];
}

Properties

passed: boolean
tableCounts: Record<string, {
    source: number;
    target: number;
    match: boolean;
}>
errors?: string[]