did something with markers

This commit is contained in:
PxlLoewe
2025-04-25 17:37:34 -07:00
parent ef93275d9c
commit 19f036d0c3
11 changed files with 57 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
model ConnectedDispatch {
id Int @id @default(autoincrement())
userId String
publicUser Json
lastHeartbeat DateTime @default(now())
loginTime DateTime @default(now())
esimatedLogoutTime DateTime?
logoutTime DateTime?
// relations:
user User @relation(fields: [userId], references: [id])
}