Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Nov 24, 2024
1 parent 4a4f0f2 commit 641d38b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion movie_collection_lib/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl AuthorizedUsers {
}

let query = query!(
"SELECT max(created_at) as created_at, max(deleted_at) as deleted_at FROM users"
"SELECT max(created_at) as created_at, max(deleted_at) as deleted_at FROM authorized_users"
);
let conn = pool.get().await?;
let result: Option<CreatedDeleted> = query.fetch_opt(&conn).await?;
Expand Down

0 comments on commit 641d38b

Please sign in to comment.