update #703

Merged
philipp merged 80 commits from update into main 2024-08-21 16:35:48 +02:00
Showing only changes of commit e004d81ca1 - Show all commits

View File

@ -486,6 +486,8 @@ WHERE id like ?
} }
pub async fn find_by_name(db: &SqlitePool, name: &str) -> Option<Self> { pub async fn find_by_name(db: &SqlitePool, name: &str) -> Option<Self> {
let name = name.trim().to_lowercase();
sqlx::query_as!( sqlx::query_as!(
Self, Self,
" "