Fix broken migration. OOPS

This commit is contained in:
Robin Ward 2013-02-22 14:11:58 -05:00
parent e2fed6fcef
commit 2d5cddc1b4
1 changed files with 2 additions and 4 deletions

View File

@ -10,10 +10,8 @@ class AddDescriptionToCategories < ActiveRecord::Migration
# Migrate excerpts over
Category.all.each do |c|
excerpt = c.excerpt
unless excerpt == I18n.t("category.replace_paragraph")
c.update_column(:description, c.excerpt)
end
post = c.topic.posts.order(:post_number).first
PostRevisor.new(post).send(:update_category_description)
end
end