Created
September 18, 2010 22:55
-
-
Save jraines/586138 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#class User | |
has_many :workouts, :through => :checkins | |
has_many :coached_workouts, :class_name = "Workout", :foreign_key => "coach_id" | |
#class Workout | |
belongs_to :coach, class_name = "User" | |
#add coach_id column to workout table |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment