BUGFIX: add default value to top_topics' scores

This commit is contained in:
Régis Hanol 2014-04-08 17:35:28 +02:00
parent 77133fd896
commit 11dcd2f6c5

View file

@ -0,0 +1,7 @@
class AddDefaultValueToTopTopicScores < ActiveRecord::Migration
def change
TopTopic.periods.each do |period|
change_column_default :top_topics, "#{period}_score".to_sym, 0
end
end
end