Skip to content

Instantly share code, notes, and snippets.

@jdkealy
Created September 16, 2016 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdkealy/a2b268fb5189fc6e57377b4e0757d954 to your computer and use it in GitHub Desktop.
Save jdkealy/a2b268fb5189fc6e57377b4e0757d954 to your computer and use it in GitHub Desktop.
User.find(x).lightboxes.each do |lb|
new_lb = lb.dup;
new_lb.user_id = 16624;
new_lb.save;
lb.lightbox_photos.each do |lbp|
new_lbp = lbp.dup;
new_lbp.lightbox_id = new_lb.id;
new_lbp.save;
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment