Interface SchemaMigration

interface SchemaMigration {
    appliedAt: number;
    boundaryCheckpointId?: string;
    fromSchemaVersion: number;
    migrationChecksum?: string;
    migrationName: string;
    toSchemaVersion: number;
}

Properties

appliedAt: number
boundaryCheckpointId?: string
fromSchemaVersion: number
migrationChecksum?: string
migrationName: string
toSchemaVersion: number