MCPcopy Create free account
hub / github.com/bewcloud/bewcloud / Migration

Interface Migration

migrate-db.ts:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9const db = new Database({ throwOnConnectionError: true });
10
11interface Migration {
12 id: string;
13 name: string;
14 executed_at: Date;
15}
16
17async function getExecutedMigrations(): Promise<Set<string>> {
18 const executedMigrations = new Set(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected