Files
grecia/app/models/follow.rb

9 lines
226 B
Ruby

class Follow < ApplicationRecord
belongs_to :user
belongs_to :followable, polymorphic: true
validates :user_id, presence: true
validates :followable_id, presence: true
validates :followable_type, presence: true
end