外部キーのnil
を許可する
# 飼い主
class Owner < ApplicationRecord
has_many :pets
end
# ペット
class Pet < ApplicationRecord
belongs_to :owner, optional: true
end
モデルが悪いのは気にしない・・・
optional: true
にしてしまうと飼い主がいないペットができてしまう
Go to list of users who liked
More than 5 years have passed since last update.
外部キーのnil
を許可する
# 飼い主
class Owner < ApplicationRecord
has_many :pets
end
# ペット
class Pet < ApplicationRecord
belongs_to :owner, optional: true
end
モデルが悪いのは気にしない・・・
optional: true
にしてしまうと飼い主がいないペットができてしまう
Register as a new user and use Qiita more conveniently
Go to list of users who liked