Fix unique thing

This commit is contained in:
Joey Hines 2025-04-20 20:30:42 -06:00
parent 6b2d4641cc
commit 77441b7ccd
Signed by: joeyahines
GPG Key ID: 38BA6F25C94C9382

View File

@ -22,10 +22,6 @@ impl j_db::model::JdbModel for SocialCreditPhrase {
fn tree() -> String { fn tree() -> String {
"SocialCreditPhrase".to_string() "SocialCreditPhrase".to_string()
} }
fn check_unique(&self, other: &Self) -> bool {
other.phrase.to_lowercase() == self.phrase.to_lowercase()
}
} }
impl SocialCreditPhrase { impl SocialCreditPhrase {