Class: CreateSurveyResponses

Inherits:
Object
  • Object
show all
Defined in:
lib/survey_constructor/generators/templates/migrate/20180608225714_create_survey_responses.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/survey_constructor/generators/templates/migrate/20180608225714_create_survey_responses.rb', line 2

def change
  create_table :survey_responses do |t|
    t.belongs_to :survey, index: true
    t.belongs_to :patient, index: true

    t.timestamps
  end
end