Я создал простые приложения rails и получил ошибку "HasManyThroughCantAssociateThroughHasOneOrManyReflection", которая отображается в админке rails, когда я хочу опубликовать изображение.
это мой код:
Может кто-нибудь помочь мне решить?
class ProductInvest < ApplicationRecord
belongs_to :product
has_many :pictures, through: :product
end
class Product < ApplicationRecord
has_many :pictures
has_many :Product_invests
end
class Picture < ApplicationRecord
belongs_to :product
has_many :Product_invests, through: :product
end