Skip to content

Instantly share code, notes, and snippets.

@apangeajwrubel
Created July 6, 2012 21:38
Show Gist options
  • Save apangeajwrubel/3062888 to your computer and use it in GitHub Desktop.
Save apangeajwrubel/3062888 to your computer and use it in GitHub Desktop.
enroll all users
pathway = Pathway.find([:id])
s = Student.all
s.each do |student|
Enrollment.create(student_id: student.id, pathway_id: pathway.id)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment