#Rails has_one "through"に関して
Railsの"through"に関して簡単に理解するには、簡単な英文を書いてみるのが良いと考える。
概念図から理解しようとすると難しい感覚を覚えるけど、シンプルに考えると英文らしくコードも記述されていることを理解できると思う。
基本形
A has one some through B => AはBを通じて何かを一つを持つ。
例文
A has one account through B => AはBを通じて一つのアカウントを持つ
#簡単な関連図
Class Sipplier
Supplierはaccountを持ち、accountを通じてaccout_historyを持つ。
Class Account
accountはsupplierに属していて、account_historyを一つ持つ
Class AccoutHistroy
AccountHistoryはaccoutに属している