user-session-history.prisma 296 B

12345678910111213
  1. model UserSessionHistory {
  2. id String @id @map("_id") @default(auto()) @db.ObjectId
  3. uid String
  4. ip String
  5. tokenId String
  6. startAt BigInt
  7. endAt BigInt @default(0)
  8. @@index([uid, startAt])
  9. @@index([tokenId])
  10. @@map("userSessionHistory")
  11. }