diff --git a/crates/workspace/src/persistence.rs b/crates/workspace/src/persistence.rs index f437165111..2d0aded1ed 100644 --- a/crates/workspace/src/persistence.rs +++ b/crates/workspace/src/persistence.rs @@ -1403,8 +1403,8 @@ impl WorkspaceDb { INSERT INTO toolchains(workspace_id, worktree_id, relative_worktree_path, language_name, name, path) VALUES (?, ?, ?, ?, ?, ?) ON CONFLICT DO UPDATE SET - name = ?4, - path = ?5 + name = ?5, + path = ?6 )) .context("Preparing insertion")?;