9 lines
227 B
Ruby
9 lines
227 B
Ruby
|
class PollVote < ActiveRecord::Base
|
||
|
# attr_accessible :poll_answers_id, :poll_questions_id, :user_id, :vote_text
|
||
|
include Redmine::SafeAttributes
|
||
|
|
||
|
belongs_to :poll_answer
|
||
|
belongs_to :poll_question
|
||
|
belongs_to :user
|
||
|
end
|