make more adjustments to try and get logging to work

This commit is contained in:
2023-12-21 20:50:35 -07:00
parent f8002c4550
commit d7f4acb702
9 changed files with 55 additions and 38 deletions

7
src/db/tables/logs.ts Normal file
View File

@@ -0,0 +1,7 @@
export interface Log {
message: string;
}
export const LogSchema = {
logs: "message",
};