summaryrefslogtreecommitdiff
path: root/db/migrate/20120124131057_add_clip_number_to_sip_account.rb
blob: e981fb4ee1b404704091c929fa66e2500052e803 (plain)
1
2
3
4
5
6
class AddClipNumberToSipAccount < ActiveRecord::Migration
  def change
    add_column :sip_accounts, :clip, :string
    remove_column :sip_accounts, :clip_phone_number_id
  end
end