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,13 @@
model PositionLog {
id Int @id @default(autoincrement())
userId String
simulator String
lat Float
lng Float
alt Int
speed Int
heading Int
timestamp DateTime @default(now())
// relations:
user User @relation(fields: [userId], references: [id])
}