0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

belongs_to と has_many

Posted at

belongs_to の使い方

class Review < ApplicationRecord
  belongs_to :food
end

belongs_to の解説

  • belongs_to は、このモデルが別のモデルに属している(関連している) ことを示す。
  • belongs_to :food を指定すると、Review モデルには food_id という 外部キー が必要になる。
  • Review のインスタンスから Food のデータを簡単に取得できる。

belongs_to をつけるとできること

  • review.food で、その Review に紐づく Food を取得できる。
  • Reviewfood_id の外部キー制約を設定できる。
  • データの整合性を保ちやすくなる(関連する Food が削除されたらどうするかの設定も可能)。

has_many の使い方

class Food < ApplicationRecord
  has_many :reviews
end

has_many の解説

  • has_many は、このモデルが複数の関連レコードを持つ ことを示す。
  • has_many :reviews を指定すると、Food モデルから関連する Review の一覧を取得できる。
  • Food に紐づく Review を管理しやすくなる。

has_many をつけるとできること

  • food.reviews で、その Food に紐づくすべての Review を取得できる。
  • dependent オプションを使うことで、親データ削除時の動作を制御 できる(例:dependent: :destroyFood 削除時に Review も削除される)。
  • has_many :through を使えば 中間テーブルを利用した多対多の関係 も作成可能。

belongs_to & has_many のまとめ

関係性 記述 できること
1対多の「多」側 belongs_to :food Review から food にアクセス可能 (review.food)
1対多の「1」側 has_many :reviews Food から reviews にアクセス可能 (food.reviews)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?