summaryrefslogtreecommitdiffstats
path: root/src/db/artists.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/artists.rs')
-rw-r--r--src/db/artists.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/artists.rs b/src/db/artists.rs
index 043f0bd..08a5968 100644
--- a/src/db/artists.rs
+++ b/src/db/artists.rs
@@ -13,7 +13,7 @@ impl Artists {
pub async fn create(&self, artist: Artist) -> Result<i32> {
let artist_id = sqlx::query!(
- "insert into artists (handle, name, bio, site) values ($1, $2, $3, $4) returning id",
+ "insert into artists (handle, name, bio, site) values ($1, $2, $3, $4) returning artist_id",
artist.handle,
artist.name,
artist.bio,
@@ -21,7 +21,7 @@ impl Artists {
)
.fetch_one(&self.0)
.await?
- .id;
+ .artist_id;
Ok(artist_id)
}