From dfccac5900369b7164fd4ba0b8e35b16867044b5 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 16 Feb 2026 15:27:41 +0100 Subject: [PATCH] feat(models/bot): removing the id field --- src/models/bot.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/models/bot.rs b/src/models/bot.rs index 8612c2c..03c10b6 100644 --- a/src/models/bot.rs +++ b/src/models/bot.rs @@ -21,7 +21,6 @@ pub enum BotActivity { #[derive(Debug, FromRow)] pub struct DbBot { - pub id: i32, pub status: String, pub activity_type: BotActivity, pub presence: BotPresence,