From 64a46e1a4430c826bbb6c9733c5faad784270b8e Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 15 Nov 2025 00:24:07 +0100 Subject: [PATCH] feat(prima/Guild): Update color type to an Integer The discord.js v15 will change the management of the embed color to be managed with only number and not string like v14 --- prisma/schema.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 5052775..dc40fd2 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -60,7 +60,7 @@ model Guild { protectAntiBot Boolean @default(false) footer String @default("© EniumTeam ~ 2025") - color String @default("#000000") + color Int @default(000000) guildUsers GuildUser[] @relation("GuildGuildRelation") WlUsers User[] @relation("GuildWhitelist")