7 lines
188 B
Ruby
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
|