summaryrefslogtreecommitdiff
path: root/db/migrate/20120927110240_change_data_type_for_announce_call_agents.rb
blob: 9ae0277c9a297cb9650f6a02e71212ad49a5805c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class ChangeDataTypeForAnnounceCallAgents < ActiveRecord::Migration
  def up
    change_table :automatic_call_distributors do |t|
      t.change :announce_call_agents, :string
    end
  end

  def down
    change_table :automatic_call_distributors do |t|
      t.change :announce_call_agents, :boolean
    end
  end
end