Files
growstuff/app/models/like.rb
2020-01-10 16:50:52 +13:00

9 lines
264 B
Ruby

# frozen_string_literal: true
class Like < ApplicationRecord
belongs_to :member
belongs_to :likeable, polymorphic: true, counter_cache: true, touch: true
validates :member, :likeable, presence: true
validates :member, uniqueness: { scope: :likeable }
end