skill-assessment-app/db/migrate/20170228161543_add_comments_to_candidate.rb

7 lines
188 B
Ruby
Raw Normal View History

2017-03-02 10:00:56 -06:00
# frozen_string_literal: true
class AddCommentsToCandidate < ActiveRecord::Migration[5.0]
def change
add_column :candidates, :review_comments, :text, after: :review_status
end
end