From fea131be7fda381c06932f53143586a3c4ea9893 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 16 Aug 2025 22:07:44 +0200 Subject: [PATCH] style(prisma/bot): changing the default activities --- prisma/schema.prisma | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 1ce1aac..b8d7a8c 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -10,9 +10,9 @@ datasource db { model Bot { id Int @id @default(autoincrement()) - status String @default("Big Brother") + status String @default("TTY by EniumTeam") type String @default("Watching") - presence String @default("online") + presence String @default("dnd") buyers User[] @relation("Buyers") owners User[] @relation("Owners")