Skip to content

Commit

Permalink
format prisma schema
Browse files Browse the repository at this point in the history
  • Loading branch information
phenylshima committed Jul 14, 2022
1 parent 7c194e3 commit eacd213
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema

generator client {
provider = "prisma-client-js"
}
Expand Down Expand Up @@ -38,9 +35,9 @@ model GuildDictionary {
}

model GuildSettings {
guildId String @id
readMultiLine Boolean @default(true)
readSpeakersName Boolean @default(false)
readEmojis Boolean @default(true)
omitThreshold Int @default(200)
guildId String @id
readMultiLine Boolean @default(true)
readSpeakersName Boolean @default(false)
readEmojis Boolean @default(true)
omitThreshold Int @default(200)
}

0 comments on commit eacd213

Please sign in to comment.