Initial commit

This commit is contained in:
2019-09-25 04:39:03 +02:00
commit 74721bf744
22 changed files with 3480 additions and 0 deletions

7
src/db/models.ts Normal file
View File

@@ -0,0 +1,7 @@
import { DateTime } from "luxon";
export interface Migration {
id: number;
name: string;
applied_at: DateTime;
}