chore: remove SQLite warning

This commit is contained in:
Ben Allfree 2023-01-23 15:22:34 +00:00
parent 938bfd070f
commit b1089f1875
2 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,7 @@ const mkApi = async (logDbPath: string) => {
connection: {
filename: logDbPath,
},
useNullAsDefault: true,
})
const write = safeCatch(

View File

@ -15,6 +15,7 @@ export const createRawPbClient = (filename: string) => {
connection: {
filename,
},
useNullAsDefault: true,
})
return conn