Add Relation#pick as short-hand for single-value plucks by dhh · Pull Request #31941 · rails/rails
Pick the first value from the named column in the current relation. This is short-hand for relation.limit(1).pluck(column_name).first, and is primarily useful when you have a relation that's al...