Skip to content

Instantly share code, notes, and snippets.

@metin
Created September 18, 2013 20:47
Show Gist options
  • Save metin/6615452 to your computer and use it in GitHub Desktop.
Save metin/6615452 to your computer and use it in GitHub Desktop.
course
school = School.where(name: "General Assembly - New York City" ).last
pc.schools << school
course = Course.create(name: "Ruby on Rails")
school.school_courses << SchoolCourse.new(course:course, school: school, start_date: Date.today, end_date: 2.months.from_now, tuition: 12000, school_course_code: "ROR101" )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment