Skip to content

Instantly share code, notes, and snippets.

@bbonamin
Forked from geektoo/flight.rb
Created August 16, 2011 12:01
Show Gist options
  • Save bbonamin/1148927 to your computer and use it in GitHub Desktop.
Save bbonamin/1148927 to your computer and use it in GitHub Desktop.
flights models
class Flight < ActiveRecord::Base
has_many :people
end
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