8 lines
223 B
Ruby
8 lines
223 B
Ruby
|
class PollAnswer < ActiveRecord::Base
|
||
|
# attr_accessible :answer_position, :answer_text, :poll_questions_id
|
||
|
include Redmine::SafeAttributes
|
||
|
|
||
|
belongs_to :poll_question
|
||
|
has_many :poll_votes, :dependent => :destroy
|
||
|
end
|