UNPKG

@riao/dbal

Version:
11 lines (10 loc) 231 B
import { DatabaseRecordId } from '../record'; /** * A record in the migration table */ export interface MigrationRecord { id: DatabaseRecordId; name: string; package: string | null; timestamp: string; }