summaryrefslogtreecommitdiff
path: root/db/migrate/20120119103852_add_sip_account_to_softkeys.rb
blob: 74bfaee0f00ca034411005a3ec8cbc1feae8508b (plain)
1
2
3
4
5
6
class AddSipAccountToSoftkeys < ActiveRecord::Migration
  def change
    add_column :softkeys, :sip_account_id, :integer
    remove_column :softkeys, :phone_id
  end
end