You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
267 B
9 lines
267 B
6 years ago
|
class PollAnswer < ActiveRecord::Base
|
||
|
# attr_accessible :answer_position, :answer_text, :poll_questions_id
|
||
|
default_scope :order => 'answer_position'
|
||
|
include Redmine::SafeAttributes
|
||
|
|
||
|
belongs_to :poll_question
|
||
|
has_many :poll_votes, :dependent => :destroy
|
||
|
end
|