refactor(db): move to core package (#4589)

This commit is contained in:
Meier Lukas
2025-12-17 08:59:52 +01:00
committed by GitHub
parent e954ea861c
commit 298a96054e
30 changed files with 258 additions and 217 deletions

View File

@@ -1,7 +1,7 @@
import { applyCustomMigrationsAsync } from ".";
import { database } from "../../driver";
import { db } from "../..";
applyCustomMigrationsAsync(database)
applyCustomMigrationsAsync(db)
.then(() => {
console.log("Custom migrations applied successfully");
process.exit(0);