for (const projectId of projects) {
      await sql`
    insert into account_project (account_id, project_id)
    values (${userId}, ${projectId})
    on conflict (account_id, project_id)
    do nothing
   `
    }

    ctx.status = 200
    ctx.body = { message: "User updated successfully" }