This commit is contained in:
Mark Moser
2017-03-02 10:00:56 -06:00
parent c4357055d7
commit efdd1767bc
4 changed files with 23 additions and 9 deletions

View File

@ -0,0 +1,6 @@
# frozen_string_literal: true
class AddCommentsToCandidate < ActiveRecord::Migration[5.0]
def change
add_column :candidates, :review_comments, :text, after: :review_status
end
end

View File

@ -0,0 +1,6 @@
# frozen_string_literal: true
class RemoveLastRemindedFromReviewerVotes < ActiveRecord::Migration[5.0]
def change
remove_column :reviewer_votes, :last_reminded, :datetime
end
end