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
This commit is contained in:
Raphael 2025-11-15 00:24:07 +01:00 committed by Raphaël
parent 6bad3415a6
commit 64a46e1a44

View file

@ -60,7 +60,7 @@ model Guild {
protectAntiBot Boolean @default(false) protectAntiBot Boolean @default(false)
footer String @default("© EniumTeam ~ 2025") footer String @default("© EniumTeam ~ 2025")
color String @default("#000000") color Int @default(000000)
guildUsers GuildUser[] @relation("GuildGuildRelation") guildUsers GuildUser[] @relation("GuildGuildRelation")
WlUsers User[] @relation("GuildWhitelist") WlUsers User[] @relation("GuildWhitelist")