this set the field to 0 instead of increasing by one it used to work in other routes ``` await db .update(Artists) .set({ songs: sql`${Artists.songs} = ${Artists.songs} + 1 ` }) .where(eq(Artists.id, id)); ```