2016-01-12 10:38:50 +08:00
|
|
|
class StaticProjectNews < ActiveRecord::Migration
|
|
|
|
def up
|
|
|
|
Project.all.each do |project|
|
2016-01-12 15:10:02 +08:00
|
|
|
unless project.news.nil?
|
|
|
|
news_count = project.news.count
|
|
|
|
project.update_attribute(:news_count, news_count)
|
|
|
|
end
|
2016-01-12 10:38:50 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
end
|
|
|
|
end
|