# frozen_string_literal: true

class AddDefaultValueToTopTopicScores < ActiveRecord::Migration[4.2]
  def change
    %i[daily weekly monthly yearly].each do |period|
      change_column_default :top_topics, "#{period}_score".to_sym, 0
    end
  end
end
