Skip to content

Commit a4c8bec

Browse files
committed
fix poll schema
1 parent c001d3f commit a4c8bec

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

prisma/schema.prisma

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,9 @@ model Poll {
4949
isAnonymous Boolean @default(false)
5050
participantCount Int @default(0)
5151
voteResults Json
52-
searchVector Unsupported("tsvector")? @db.TsVector
5352
author User @relation("PollAuthor", fields: [authorUserId], references: [id])
5453
votes Vote[]
5554
userAction UserAction[]
56-
57-
@@index([searchVector], type: Gin)
5855
}
5956

6057
model Vote {

0 commit comments

Comments
 (0)