aboutsummaryrefslogtreecommitdiffstats
path: root/src/database.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/database.rs')
-rw-r--r--src/database.rs16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/database.rs b/src/database.rs
index e735df9..2a53f0b 100644
--- a/src/database.rs
+++ b/src/database.rs
@@ -139,7 +139,21 @@ impl Db {
is_updated
}
- pub fn repo_update(repo: &Repo) -> Result<(), Error> {
+ pub async fn repo_update(&mut self, repo: &Repo) -> Result<(), Error> {
+ let mut tx = self.connection.begin().await?;
+
+ sqlx::query(r#"
+ UPDATE repositories
+ SET updated_at = ?
+ WHERE id = ?
+ "#)
+ .bind(&repo.updated_at)
+ .bind(repo.id)
+ .execute(&mut tx)
+ .await?;
+
+ tx.commit().await?;
+
Ok(())
}
}