Files
fizzy/app/models/watch.rb
T

8 lines
189 B
Ruby

class Watch < ApplicationRecord
belongs_to :user
belongs_to :card, touch: true
scope :watching, -> { where(watching: true) }
scope :not_watching, -> { where(watching: false) }
end