class AddQuestionFieldsToContractTemplates < ActiveRecord::Migration[6.0] def change add_column :contract_templates, :question_1_text, :text add_column :contract_templates, :question_2_text, :text add_column :contract_templates, :question_3_text, :text add_column :contract_templates, :question_4_text, :text add_column :contract_templates, :question_5_text, :text add_column :contract_templates, :question_6_text, :text add_column :contract_templates, :question_7_text, :text add_column :contract_templates, :question_8_text, :text add_column :contract_templates, :question_9_text, :text add_column :contract_templates, :question_10_text, :text end end