8 lines
121 B
Ruby
8 lines
121 B
Ruby
class SurveyStep < ActiveRecord::Base
|
|
|
|
belongs_to :survey_type
|
|
|
|
has_many :survey_groups, :dependent => :destroy
|
|
|
|
end
|