From 77441b7ccd52cb9a7b72009d6d829de608d521d9 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Sun, 20 Apr 2025 20:30:42 -0600 Subject: [PATCH] Fix unique thing --- src/models/social_credit.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/models/social_credit.rs b/src/models/social_credit.rs index 02d1644..538d890 100644 --- a/src/models/social_credit.rs +++ b/src/models/social_credit.rs @@ -22,10 +22,6 @@ impl j_db::model::JdbModel for SocialCreditPhrase { fn tree() -> String { "SocialCreditPhrase".to_string() } - - fn check_unique(&self, other: &Self) -> bool { - other.phrase.to_lowercase() == self.phrase.to_lowercase() - } } impl SocialCreditPhrase {