Update scheduled message status endpoint #20

Merged
phoenix merged 9 commits from update_scheduled_message_status-endpoint into alot_of_changes 2026-06-19 18:34:40 -04:00
Showing only changes of commit 3c1d06d7c8 - Show all commits
+1 -1
View File
@@ -91,7 +91,7 @@ pub async fn update_status(
) -> Result<(), sqlx::Error> {
match sqlx::query(
r#"
UPDATE "scheduled_message" SET status = $1 WHERE id = $2;
UPDATE "scheduled_messages" SET status = $1 WHERE id = $2;
"#,
)
.bind(status)