8 lines
120 B
TypeScript
8 lines
120 B
TypeScript
|
import { DateTime } from "luxon";
|
||
|
|
||
|
export interface Migration {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
applied_at: DateTime;
|
||
|
}
|