Got it going
pr CI / Test Suite (pull_request) Failing after 2m51s

This commit is contained in:
2026-08-13 11:35:49 -04:00
parent db8e5458ca
commit 3d211f2e6e
4 changed files with 123 additions and 76 deletions
+5 -1
View File
@@ -25,7 +25,11 @@ pub async fn insert(
}
}
pub async fn update_file_key(pool: &sqlx::PgPool, id: &uuid::Uuid, file_key: &str) -> Result<(), sqlx::Error> {
pub async fn update_file_key(
pool: &sqlx::PgPool,
id: &uuid::Uuid,
file_key: &str,
) -> Result<(), sqlx::Error> {
match sqlx::query(
r#"
UPDATE "songQueueData" SET file_key = $1 WHERE id = $2;