This commit is contained in:
2024-08-30 18:15:07 +02:00
parent 8cadaf08a0
commit c77503ed45
17 changed files with 273 additions and 149 deletions

View File

@@ -8,5 +8,5 @@ export const tables = schema
export function useDrizzle() {
const config = useRuntimeConfig()
return drizzle(postgres(config.postgres.url, { prepare: false }), { schema })
return drizzle(postgres(config.postgres.url, { prepare: false, max: 50 }), { schema })
}