class AddVoiceOutgoingToCommConfig < ActiveRecord::Migration[6.0]
  def change
    change_table :CommConfig, bulk: true do |t|
      t.string :TW_VoiceOutgoing, null: false, limit: 24,
        after: :TW_PhoneNumber
      t.integer :TW_AnsweringDetect, null: false,
         default: 0, after: :TW_VoiceOutgoing
    end
  end
end
