# frozen_string_literal: true class RemoveVoteLocking < ActiveRecord::Migration[5.0] def change remove_column :reviewer_votes, :locked, :boolean, default: false, null: false end end