# frozen_string_literal: true class AddCommentsToCandidate < ActiveRecord::Migration[5.0] def change add_column :candidates, :review_comments, :text, after: :review_status end end