summaryrefslogtreecommitdiff
path: root/db/migrate/20120130155801_add_sip_account_id_to_access_authorization.rb
blob: 6907791f94c89ff5a898d6e1d6c908fd851fbe7f (plain)
1
2
3
4
5
6
class AddSipAccountIdToAccessAuthorization < ActiveRecord::Migration
  def change
    add_column :access_authorizations, :sip_account_id, :integer
    remove_column :callthroughs, :sip_account_id
  end
end