6 lines
163 B
Ruby
6 lines
163 B
Ruby
class Survey::Answer < ActiveRecord::Base
|
|
belongs_to :choice, class_name: 'Survey::Choice', touch: true
|
|
belongs_to :user
|
|
# attr_accessible :title, :body
|
|
end
|