We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4147c8 commit 03544a2Copy full SHA for 03544a2
1 file changed
packages/desktop/src/main/index.ts
@@ -51,6 +51,7 @@ import {
51
} from "./windows"
52
import { drizzle } from "drizzle-orm/node-sqlite/driver"
53
import type { Server } from "virtual:opencode-server"
54
+import { migrate } from "./migrate"
55
56
const initEmitter = new EventEmitter()
57
let initStep: InitStep = { phase: "server_waiting" }
@@ -112,6 +113,7 @@ function setupApp() {
112
113
}
114
115
void app.whenReady().then(async () => {
116
+ migrate()
117
app.setAsDefaultProtocolClient("opencode")
118
registerRendererProtocol()
119
setDockIcon()
0 commit comments