summaryrefslogtreecommitdiff
path: root/db/migrate/20111220151633_add_caller_id_number_to_fax_documents.rb
blob: fe1461e21e814f825080d4c8ac4b5c48614186a2 (plain)
1
2
3
4
5
6
7
8
class AddCallerIdNumberToFaxDocuments < ActiveRecord::Migration
  def change
    add_column :fax_documents, :caller_id_number, :string
    add_column :fax_documents, :caller_id_name, :string
    remove_column :fax_documents, :t38_gateway_format
    remove_column :fax_documents, :t38_peer
  end
end