diff --git a/prisma/schema.prisma b/prisma/schema.prisma index fb12761..a5df4c2 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -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" } @@ -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) }