Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MigrationInfo

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

§Properties

§
executedAt?: Date
[src]

When was the migration executed.

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

§
migration: Migration
[src]

The actual migration.

§
name: string
[src]

Name of the migration.