class AddSeenAtToGamificationRewards < ActiveRecord::Migration def change change_table :gamification_rewards do |t| t.datetime :seen_at end add_index :gamification_rewards, :seen_at, name: 'index_gamification_rewards_on_seen_at' end end