dr-click/questionnaire

View on GitHub
lib/generators/templates/migration_add_types_to_questions_and_options.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddTypesToQuestionsAndOptions < ActiveRecord::Migration
  def change
    #Survey Questions table
    add_column :survey_questions, :questions_type_id, :integer
    
    #Survey Options table
    add_column :survey_options, :options_type_id, :integer
    
    #Survey Answers table
    add_column :survey_answers, :option_text, :text
    add_column :survey_answers, :option_number, :integer
  end
end