skill-assessment-app/db/migrate/20170228161543_add_comments_to_candidate.rb
2017-03-02 10:36:35 -06:00

7 lines
188 B
Ruby

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