prorm API Reference
    Preparing search index...

    Interface MigrationStatus

    Migration status

    interface MigrationStatus {
        name: string;
        status: "down" | "pending" | "up";
        batch?: number;
        timestamp?: number;
    }
    Index
    name: string

    Name of the migration

    status: "down" | "pending" | "up"

    Current status: pending, up, down

    batch?: number

    Batch number (if executed)

    timestamp?: number

    Timestamp (if executed)