mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
9 lines
264 B
Ruby
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
|