We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeced2e commit 8c3a585Copy full SHA for 8c3a585
prisma/schema.prisma
@@ -126,12 +126,13 @@ model RedditAccessToken {
126
}
127
128
model RedditPost {
129
- id String @id @default(cuid())
130
- postId String @unique
131
- title String
132
- content String
133
- createdAt DateTime
134
- updatedAt DateTime
+ id String @id @default(cuid())
+ postId String @unique
+ title String
+ content String
+ isMedicalAdviceRequired Boolean @default(true)
+ createdAt DateTime
135
+ updatedAt DateTime
136
137
redditPostComments RedditPostComment[]
138
0 commit comments