project-knedita/prisma/schema.prisma

95 lines
3.1 KiB
Text
Raw Normal View History

2023-06-20 20:05:15 +00:00
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id @default(uuid())
displayName String?
username String @unique
email String @unique
password String
kweeks Kweek[]
profileImage String?
likedKweeks KweekLike[]
likedComments CommentLike[]
followers Follows[] @relation("follower")
following Follows[] @relation("following")
kweeksComments Comments[]
fromNotifications Notifications[] @relation("fromNotifications")
toNotifications Notifications[] @relation("toNotifications")
socketId String?
createdAt DateTime @default(now())
2023-06-20 20:05:15 +00:00
}
model Kweek {
2023-09-30 21:00:19 +00:00
id String @id @default(uuid())
content String
authorId String
2023-09-30 21:00:19 +00:00
author User @relation(fields: [authorId], references: [id], onDelete: Cascade)
likes KweekLike[]
comments Comments[]
2023-09-30 21:00:19 +00:00
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model KweekLike {
id String @id @default(uuid())
kweekId String
kweek Kweek @relation(fields: [kweekId], references: [id], onDelete: Cascade)
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
}
// I should join these two up? Yeah, but I will not do it since it didn't work on the first time.
model CommentLike {
2023-09-30 21:00:19 +00:00
id String @id @default(uuid())
commentId String
comment Comments @relation(fields: [commentId], references: [id], onDelete: Cascade)
2023-09-30 21:00:19 +00:00
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
}
model Follows {
follower User @relation("follower", fields: [followerId], references: [id], onDelete: Cascade)
followerId String
following User @relation("following", fields: [followingId], references: [id], onDelete: Cascade)
followingId String
@@id([followerId, followingId])
}
model Comments {
2023-09-30 21:00:19 +00:00
id String @id @default(uuid())
content String
userId String
2023-09-30 21:00:19 +00:00
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
kweekId String
kweek Kweek @relation(fields: [kweekId], references: [id], onDelete: Cascade)
likes CommentLike[]
2023-09-30 21:00:19 +00:00
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt @default(now())
}
model Notifications {
2023-09-30 21:00:19 +00:00
id String @id @default(uuid())
type NotificationType
content String
2023-09-30 21:00:19 +00:00
createdAt DateTime @default(now())
fromUserId String
2023-09-30 21:00:19 +00:00
fromUser User? @relation(name: "fromNotifications", fields: [fromUserId], references: [id], onDelete: Cascade)
toUserId String
2023-09-30 21:00:19 +00:00
toUser User? @relation(name: "toNotifications", fields: [toUserId], references: [id], onDelete: Cascade)
}
enum NotificationType {
WARNING
INFO
}