@@ -5,7 +5,7 @@ pub async fn find_by_id(pool: &PgPool, id: i32) -> Result<Option<BeatmapsetRow>,
55 sqlx:: query_as!(
66 BeatmapsetRow ,
77 r#"
8- SELECT id, osu_id, artist, artist_unicode, title, title_unicode, creator, source, tags, has_video, has_storyboard, is_explicit, is_featured, cover_url, preview_url, osu_file_url, created_at, updated_at
8+ SELECT id, osu_id, artist, artist_unicode, title, title_unicode, creator, source, tags, has_video, has_storyboard, is_explicit, is_featured, cover_url, preview_url, osu_file_url, created_at, updated_at, osu_status_changed_at
99 FROM beatmapset
1010 WHERE id = $1
1111 "# ,
@@ -22,7 +22,7 @@ pub async fn find_by_osu_id(
2222 sqlx:: query_as!(
2323 BeatmapsetRow ,
2424 r#"
25- SELECT id, osu_id, artist, artist_unicode, title, title_unicode, creator, source, tags, has_video, has_storyboard, is_explicit, is_featured, cover_url, preview_url, osu_file_url, created_at, updated_at
25+ SELECT id, osu_id, artist, artist_unicode, title, title_unicode, creator, source, tags, has_video, has_storyboard, is_explicit, is_featured, cover_url, preview_url, osu_file_url, created_at, updated_at, osu_status_changed_at
2626 FROM beatmapset
2727 WHERE osu_id = $1
2828 "# ,
0 commit comments