mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-29 22:19:31 +02:00
Use an epoch number for the clients online to fix query
This commit is contained in:
parent
4c463de45f
commit
eeb1d4954d
3 changed files with 4 additions and 4 deletions
|
@ -221,7 +221,7 @@ export const clients = sqliteTable("clients", {
|
|||
megabytesIn: integer("bytesIn"),
|
||||
megabytesOut: integer("bytesOut"),
|
||||
lastBandwidthUpdate: text("lastBandwidthUpdate"),
|
||||
lastPing: text("lastPing"),
|
||||
lastPing: integer("lastPing"),
|
||||
type: text("type").notNull(), // "olm"
|
||||
online: integer("online", { mode: "boolean" }).notNull().default(false),
|
||||
// endpoint: text("endpoint"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue