035_specialize_articles.rb 222 Bytes
class SpecializeArticles < ActiveRecord::Migration
  def self.up
    execute "update articles set type = 'TinyMceArticle' where type = 'Article' or type is null or type = ''"
  end

  def self.down
    # nothing
  end
end