blob: fe5d7b65fe1254aeeed0adabc2271137bed53879 (
plain)
1
2
3
4
5
6
7
8
|
class AddFaxToFaxes < ActiveRecord::Migration
def change
remove_column :faxes, :pdf
remove_column :fax_pages, :page
add_column :faxes, :fax, :string
add_column :fax_pages, :fax_page, :string
end
end
|