DevelopingCoder/cs61a_hintr

View on GitHub
app/models/hint_vote.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HintVote < ActiveRecord::Base
    belongs_to :hint
    belongs_to :user
    validates :vote_type, :presence => true
end