changed SQL a bit

This commit is contained in:
Martin Slot 2022-10-27 20:56:13 +02:00
parent a086277c3a
commit 6077526bae
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ impl<'a> RequestGateway<'a> {
let mut prepared = connection
.prepare(
"SELECT C.name, C.vcs_type, O.url\
FROM Origins O\
JOIN Crurrents C ON O.name = C.name AND O.vcs_type = C.vcs_type",
FROM Origins O\
JOIN Crurrents C ON O.name = C.name AND O.vcs_type = C.vcs_type",
)
.unwrap();