ulid als scalar hinzugefügt

This commit is contained in:
2026-06-04 22:42:57 +02:00
parent b3b7b75ea8
commit 5fb2b3666f
14 changed files with 163 additions and 20 deletions

View File

@@ -17,11 +17,12 @@ impl Repository {
"#;
let typ = sqlx::query_as::<_, model::Typ>(QUERY)
.bind(typ.id.to_string())
.bind(typ.id)
.bind(typ.geaendert_am)
.bind(&typ.typname)
.fetch_one(db)
.await?;
// .map(model::Typ::from)?;
Ok(typ)
}