Store model on LoggedCall (#138)

This commit is contained in:
arcticfly
2023-08-11 16:39:04 -07:00
committed by GitHub
parent d9db6d80ea
commit 3a908d51aa
3 changed files with 7 additions and 9 deletions

View File

@@ -273,7 +273,8 @@ model LoggedCall {
projectId String @db.Uuid
project Project? @relation(fields: [projectId], references: [id], onDelete: Cascade)
tags LoggedCallTag[]
model String?
tags LoggedCallTag[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt