lock voting when interview status not pending

This commit is contained in:
Mark Moser
2016-12-04 16:19:16 -06:00
parent bc31f6cf17
commit 73df3d1258
3 changed files with 20 additions and 6 deletions

View File

@ -0,0 +1,6 @@
# frozen_string_literal: true
class RemoveVoteLocking < ActiveRecord::Migration[5.0]
def change
remove_column :reviewer_votes, :locked, :boolean, default: false, null: false
end
end