9 lines
279 B
Ruby
9 lines
279 B
Ruby
class SurveyItemAnswer < ActiveRecord::Base
|
|
belongs_to :survey_item
|
|
attr_accessible :class_text, :data_type, :field_type, :help_text, :label_text, :archived, :locked
|
|
has_many :answer_sets
|
|
FIELD_TYPES=["normal", "other"]
|
|
DATA_TYPE = ["integer", "string", "date"]
|
|
|
|
end
|