Last active
March 16, 2017 04:09
-
-
Save felixflores/f07ec5df258ac89eca99cbe9f11530f5 to your computer and use it in GitHub Desktop.
Sample Data for ActiveRecord Problem
This file contains 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 Student < ActiveRecord::Base | |
has_many :assignments | |
end | |
class Assignment < ActiveRecord::Base | |
belongs_to :student | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment