Skip to content

Instantly share code, notes, and snippets.

@johnl
Created October 2, 2008 10:31
Show Gist options
  • Save johnl/14336 to your computer and use it in GitHub Desktop.
Save johnl/14336 to your computer and use it in GitHub Desktop.
ForumPost.transaction do
(0..WpComment.approved.count / 100).each do |offset|
WpComment.approved.find(:all, :limit => 100, :offset => offset * 100 ).each do |wpc|
ForumPost.create_from_wp_comment(wpc)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment