From fa9935fa54c0f451f31e208d3b3484c31ae07a61 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Thu, 20 Apr 2023 16:37:42 -0600 Subject: [PATCH] Quick fix for adding new randoms --- src/models/random.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/random.rs b/src/models/random.rs index 1a78365..ce5b6e3 100644 --- a/src/models/random.rs +++ b/src/models/random.rs @@ -25,8 +25,8 @@ impl JdbModel for RandomConfig { "randoms".to_string() } - fn check_unique(&self, other: &Self) -> bool { - !self.name.eq_ignore_ascii_case(&other.name) + fn check_unique(&self, _other: &Self) -> bool { + true } }