I have a simple golf app, and for each player I have :total_score and :current_place attributes. I want Rails to define the :current_place attribute of each player based on whether that player's :total_score is higher or lower than the other players.
In other words, if there are two players, and one has a :total_score => 5and the other has :total_score => 4 I'd like Rails to make the first player's :current_place => 1, and the other player's :current_place => 2, and so on. I basically want it to define the :current_place values based on the descending of the :total_score column.