interface MigrationInfo {
    executedAt?: Date;
    migration: Migration;
    name: string;
}

Properties

executedAt?: Date

When was the migration executed.

If this is undefined, the migration hasn't been executed yet.

migration: Migration

The actual migration.

name: string

Name of the migration.