-
-
Save bbonamin/1148927 to your computer and use it in GitHub Desktop.
flights models
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 Flight < ActiveRecord::Base | |
has_many :people | |
end |
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 Person < ActiveRecord::Base | |
belongs_to :flight | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment