Skip to content

Commit

Permalink
fix: invalid invocation (#1040)
Browse files Browse the repository at this point in the history
  • Loading branch information
geisterfurz007 authored Aug 3, 2023
1 parent 3c429c0 commit 7609125
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,9 @@ model Valentine {

model VoiceOnDemandMapping {
userId String @id @map("user_id") @db.VarChar
channelId String @map("channel_id") @db.VarChar
channelId String @unique @map("channel_id") @db.VarChar
emoji String @db.VarChar
@@unique([channelId], name: "IDX_VoiceOnDemandMapping_Unique_Channel")
@@map(name: "voice_on_demand_mapping")
}

Expand Down

0 comments on commit 7609125

Please sign in to comment.