Rhys
Rhys
Explore posts from servers
BABetter Auth
Created by Rhys on 3/8/2025 in #help
Organization additional fields
The docs seem to imply that you can't set additionalFields in the schema for an organization or team, is that correct?
6 replies
PPrisma
Created by Rhys on 3/7/2025 in #help-and-questions
Can't delete
Running prisma 6.4.1 with Planetscale I cannot seem to run any delete operation. Tried both from studio and from prisma client and neither run, no errors output either.
3 replies
PPrisma
Created by Rhys on 12/9/2024 in #help-and-questions
fullText contradicting errors
PrismaClientKnownRequestError:
Invalid `prisma.user.findMany()` invocation:
Cannot find a fulltext index to use for the native search, try adding a @@fulltext([Fields...]) to your schema
PrismaClientKnownRequestError:
Invalid `prisma.user.findMany()` invocation:
Cannot find a fulltext index to use for the native search, try adding a @@fulltext([Fields...]) to your schema
Then I add the @@fullText part to my schema and I get
Error: Prisma schema validation - (get-dmmf wasm)
Error code: P1012
error: Attribute not known: "@fullText".
--> prisma\schema.prisma:88
|
87 | @@index([siteId])
88 | @@fullText([name, firstName, lastName])
Error: Prisma schema validation - (get-dmmf wasm)
Error code: P1012
error: Attribute not known: "@fullText".
--> prisma\schema.prisma:88
|
87 | @@index([siteId])
88 | @@fullText([name, firstName, lastName])
6 replies