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 07cdc3a commit ffc73f6Copy full SHA for ffc73f6
prisma/schema.prisma
@@ -90,8 +90,8 @@ model RedditMessage {
90
redditId String @unique @map("reddit_id")
91
type String // "comment", "post", "dm"
92
author String @map("author")
93
- content String @map("content")
94
- bodyHtml String? @map("body_html")
+ content String @map("content") @db.Text
+ bodyHtml String? @map("body_html") @db.Text
95
subreddit String? @map("subreddit")
96
contextUrl String? @map("context_url")
97
isRead Boolean @default(false) @map("is_read")
0 commit comments