mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-01 21:21:06 +00:00
Try to route logs requests to a different database
This commit is contained in:
parent
eedf57af89
commit
b622aca221
13 changed files with 338 additions and 66 deletions
7
server/db/sqlite/logsDriver.ts
Normal file
7
server/db/sqlite/logsDriver.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { db as mainDb } from "./driver";
|
||||
|
||||
// SQLite doesn't support separate databases for logs in the same way as Postgres
|
||||
// Always use the main database connection for SQLite
|
||||
export const logsDb = mainDb;
|
||||
export default logsDb;
|
||||
export const primaryLogsDb = logsDb;
|
||||
Loading…
Add table
Add a link
Reference in a new issue