You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
365 B

class RemoveRatingFromPlayers < ActiveRecord::Migration[8.1]
def change
# The results screen no longer asks "did you like this game?", so the vote
# and the admin panel reading it are gone along with these columns.
remove_index :players, :rating
remove_column :players, :rating, :integer
remove_column :players, :rated_at, :datetime
end
end