Skip to content

Instantly share code, notes, and snippets.

@eduardopoleo
Created July 27, 2016 01:31
Show Gist options
  • Select an option

  • Save eduardopoleo/c39420f5cae38fb7a43bc2f8b2fe463a to your computer and use it in GitHub Desktop.

Select an option

Save eduardopoleo/c39420f5cae38fb7a43bc2f8b2fe463a to your computer and use it in GitHub Desktop.
class City < ActiveRecord::Base
has_many :libraries
end
class Library < ActiveRecord::Base
belongs_to :city
has_many :books
end
class Book < ActiveRecord::Base
belongs_to :library
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment