From eacd2130f5223614847ffee3c8fb53c0b61a69eb Mon Sep 17 00:00:00 2001 From: femshima <49227365+femshima@users.noreply.github.com> Date: Thu, 14 Jul 2022 17:10:51 +0900 Subject: [PATCH] format prisma schema --- prisma/schema.prisma | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) 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) }