Skip to content

Instantly share code, notes, and snippets.

@edezekiel
Created November 20, 2018 14:40
Show Gist options
  • Save edezekiel/39051117ef3809b5ae99c8f7b6386e82 to your computer and use it in GitHub Desktop.
Save edezekiel/39051117ef3809b5ae99c8f7b6386e82 to your computer and use it in GitHub Desktop.
example of activerecord association
class Band < ActiveRecord::Base
has_many :sessions
has_many :concerts, through: :sessions
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment