Skip to content

Commit 3e96e4e

Browse files
authored
Merge pull request #73 from GeneralMagicio/fix-prisma-poll-schema
fix poll schema
2 parents c001d3f + a4c8bec commit 3e96e4e

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)