kysely
    Preparing search index...

    Interface MigrationInfo

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

    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.