Skip to content

Commit

Permalink
update schema.prisma
Browse files Browse the repository at this point in the history
  • Loading branch information
GwonHyeok committed Feb 27, 2025
1 parent aeced2e commit 8c3a585
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,13 @@ model RedditAccessToken {
}

model RedditPost {
id String @id @default(cuid())
postId String @unique
title String
content String
createdAt DateTime
updatedAt DateTime
id String @id @default(cuid())
postId String @unique
title String
content String
isMedicalAdviceRequired Boolean @default(true)
createdAt DateTime
updatedAt DateTime
redditPostComments RedditPostComment[]
}
Expand Down

0 comments on commit 8c3a585

Please sign in to comment.