From 4c564899e35b40c0321982fa8bdabe0b6a5b7706 Mon Sep 17 00:00:00 2001 From: K0nnyaku Date: Sun, 15 Dec 2024 22:54:19 +0800 Subject: [PATCH] refactor: modify the variable type of rating (#63) chore: modify the variable type of rating --- src/models/account.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/account.rs b/src/models/account.rs index fc5fdd1..eb65445 100644 --- a/src/models/account.rs +++ b/src/models/account.rs @@ -21,7 +21,7 @@ pub struct Account { pub college: Option, pub major: Option, - pub rating: i8, + pub rating: i32, pub active: bool, pub created_at: chrono::NaiveDateTime,