class Article < ActiveRecord::Base has_many :comments before_move_to :ArticleArchive do comments.each { |c| c.move_to(CommentArchive) } end end