From 1da69af1789329c4c06ec9595d560cf2bfac8d27 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sun, 27 Jul 2025 22:49:23 +0200 Subject: [PATCH] style(db/guild): adding guild custom option --- prisma/schema.prisma | 3 +++ 1 file changed, 3 insertions(+) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 7004953..8d44c6e 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -38,6 +38,9 @@ model Guild { logMsg Boolean @default(false) logServer Boolean @default(false) + footer String @default("© EniumTeam ~ 2025") + color String @default("#000000") + guildUsers GuildUser[] @relation("GuildGuildRelation") }