Skip to content

Commit 68087ac

Browse files
Format OutOfOfficeEntry model for consistency
1 parent b88214b commit 68087ac

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

packages/prisma/schema.prisma

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1940,18 +1940,18 @@ model Avatar {
19401940
}
19411941

19421942
model OutOfOfficeEntry {
1943-
id Int @id @default(autoincrement())
1944-
uuid String @unique
1945-
start DateTime
1946-
end DateTime
1947-
notes String?
1948-
showNotePublicly Boolean @default(false)
1949-
userId Int
1950-
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
1951-
toUserId Int?
1952-
toUser User? @relation(name: "toUser", fields: [toUserId], references: [id], onDelete: Cascade)
1953-
reasonId Int?
1954-
reason OutOfOfficeReason? @relation(fields: [reasonId], references: [id], onDelete: SetNull)
1943+
id Int @id @default(autoincrement())
1944+
uuid String @unique
1945+
start DateTime
1946+
end DateTime
1947+
notes String?
1948+
showNotePublicly Boolean @default(false)
1949+
userId Int
1950+
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
1951+
toUserId Int?
1952+
toUser User? @relation(name: "toUser", fields: [toUserId], references: [id], onDelete: Cascade)
1953+
reasonId Int?
1954+
reason OutOfOfficeReason? @relation(fields: [reasonId], references: [id], onDelete: SetNull)
19551955
19561956
createdAt DateTime @default(now())
19571957
updatedAt DateTime @updatedAt

0 commit comments

Comments
 (0)