about summary refs log tree commit diff stats
path: root/app/models/vote.rb
blob: fced5bd3be52ee2d917b7367f0bc3eadeaafcdad (plain) (blame)
1
2
3
4
5
class Vote < ApplicationRecord
  belongs_to :votable, polymorphic: true

  validates :upvote, presence: true, inclusion: { in: [0, 1] }
end