标题说明了一切。如何定义ActiveStorage::Attachment
与我的模型相关联的关系?我希望能够comment
和react
到photos
以及Post
。
class Post < ApplicationRecord
belongs_to :user
has_many :comments, as: :commentable
has_many :reactions, as: :reactionable
has_many_attached :uploads
end