We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b50ecc commit 9239954Copy full SHA for 9239954
1 file changed
apps/sim/db/index.ts
@@ -1,4 +1,4 @@
1
-import { PostgresJsDatabase, drizzle } from 'drizzle-orm/postgres-js'
+import { drizzle, type PostgresJsDatabase } from 'drizzle-orm/postgres-js'
2
import postgres from 'postgres'
3
import { env } from '@/lib/env'
4
import * as schema from './schema'
@@ -13,7 +13,7 @@ const drizzleClient = drizzle(
13
idle_timeout: 30, // Keep connections alive for 30 seconds when idle
14
connect_timeout: 30, // Timeout after 30 seconds when connecting
15
}),
16
- { schema },
+ { schema }
17
)
18
19
declare global {
0 commit comments