Created
September 14, 2018 09:40
-
-
Save tonyfg/61b69391aa139be825300a59fe4506c0 to your computer and use it in GitHub Desktop.
Org list models
This file contains hidden or 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
# app/models/organization.rb | |
class Organization < ApplicationRecord | |
has_many :hqs | |
has_many :stores, through: :hqs | |
end | |
# app/models/country.rb | |
class Country < ApplicationRecord | |
end | |
# app/models/hq.rb | |
class Hq < ApplicationRecord | |
belongs_to :organization | |
belongs_to :country | |
has_many :stores | |
end | |
# app/models/store.rb | |
class Store < ApplicationRecord | |
belongs_to :hq | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment