035_specialize_articles.rb 259 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class SpecializeArticles < ActiveRecord::Migration def self.up execute "update articles set type = 'TinyMceArticle' where type = 'Article'" end def self.down raise ActiveRecord::Migration::IrreversibleMigration, 'cannot reverse this' end end