BUGFIX: add default value to top_topics' scores
This commit is contained in:
parent
77133fd896
commit
11dcd2f6c5
|
@ -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
|
Loading…
Reference in New Issue