summaryrefslogtreecommitdiff
path: root/db/migrate/20111210124447_remove_sip_domain_id_from_sip_account.rb
blob: eeb5afe4a6e76f87f2c6546496dcfd4d033d669a (plain)
1
2
3
4
5
6
7
8
9
class RemoveSipDomainIdFromSipAccount < ActiveRecord::Migration
  def up
    remove_column :sip_accounts, :sip_domain_id
  end

  def down
    add_column :sip_accounts, :sip_domain_id, :integer
  end
end