8 lines
127 B
Ruby
8 lines
127 B
Ruby
class SurveyGroup < ActiveRecord::Base
|
|
|
|
has_many :survey_items, :dependent => :destroy
|
|
|
|
belongs_to :survey_step
|
|
|
|
end
|