mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Ready for release soon.
This commit is contained in:
+5
-6
@@ -1,16 +1,15 @@
|
||||
import { env } from "@/env.mjs";
|
||||
import { db } from "@/db";
|
||||
import {db, makeMigration} from "@/db";
|
||||
import { eq } from "drizzle-orm";
|
||||
import * as drizzleDb from "@/db";
|
||||
|
||||
|
||||
export function init() {
|
||||
export async function init() {
|
||||
consoleAscii();
|
||||
console.log("====Init Functions====");
|
||||
|
||||
createDefaultOrganization().then(() => {});
|
||||
|
||||
createSettingsIfNotExist()
|
||||
await makeMigration();
|
||||
await createDefaultOrganization();
|
||||
await createSettingsIfNotExist()
|
||||
.then(() => {
|
||||
console.log("====Initialization completed====");
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user