| 9 | const db = new Database({ throwOnConnectionError: true }); |
| 10 | |
| 11 | interface Migration { |
| 12 | id: string; |
| 13 | name: string; |
| 14 | executed_at: Date; |
| 15 | } |
| 16 | |
| 17 | async function getExecutedMigrations(): Promise<Set<string>> { |
| 18 | const executedMigrations = new Set( |
nothing calls this directly
no outgoing calls
no test coverage detected