We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ea4ccf commit 42a5672Copy full SHA for 42a5672
prisma/schema.prisma
@@ -161,8 +161,9 @@ model ErrorReport {
161
@@index([createdAt])
162
@@index([platform])
163
@@index([isFatal])
164
- @@index([message(length: 191)]) // Index the start of messages for fast lookups.
165
- @@index([stack(length: 191)])
+ // THE FIX: Removed the MySQL-specific '(length: 191)' from these two lines.
+ @@index([message])
166
+ @@index([stack])
167
// Indexes & Mapping
168
@@map("error_reports")
169
}
0 commit comments