fix: write_ahead_log in sqlite config schema

This commit is contained in:
tituspijean
2025-10-27 21:57:52 +01:00
committed by GitHub
parent df4d864838
commit 66b6dea068
+1 -1
View File
@@ -14,7 +14,7 @@ const databaseConfig = type({
type: '"sqlite" | "sqlite3"',
sqlite: {
path: 'string',
write_head_log: goBool.default(true),
write_ahead_log: goBool.default(true),
wal_autocheckpoint: 'number = 1000',
},
})