class CreateValidationTexts < ActiveRecord::Migration def change create_table :validation_texts do |t| t.references :step_validation, index: true t.references :submission_text, index: true t.string :description t.timestamps end end end