Association

モデルとモデルの間には関連付け(Association)に関する Cheat Sheets です。

1対多: belongs_to / has_many

関連 Customer (1) ←→ (n) Order モデル class Customer < ActiveRecord::Base has_many :orders # ← 複数形 end class Ord … 続きを読む