summaryrefslogtreecommitdiff
path: root/db/migrate/20120119114329_add_clir_and_clip_phone_number_to_sip_accounts.rb
blob: d21916c9a8d3493abe841d9d8e2f469a795d3af3 (plain)
1
2
3
4
5
6
class AddClirAndClipPhoneNumberToSipAccounts < ActiveRecord::Migration
  def change
    add_column :sip_accounts, :clir, :boolean
    add_column :sip_accounts, :clip_phone_number_id, :integer
  end
end