From b80bd744ad873f6fc43018bc4bfb90677de167bd Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Mon, 17 Dec 2012 12:01:45 +0100 Subject: Start of GS5. --- db/migrate/20111216112614_add_information_to_fax.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 db/migrate/20111216112614_add_information_to_fax.rb (limited to 'db/migrate/20111216112614_add_information_to_fax.rb') diff --git a/db/migrate/20111216112614_add_information_to_fax.rb b/db/migrate/20111216112614_add_information_to_fax.rb new file mode 100644 index 0000000..d5c03da --- /dev/null +++ b/db/migrate/20111216112614_add_information_to_fax.rb @@ -0,0 +1,19 @@ +class AddInformationToFax < ActiveRecord::Migration + def change + remove_column :faxes, :number_of_pages + add_column :faxes, :document_total_pages, :integer + add_column :faxes, :document_transferred_pages, :integer + add_column :faxes, :ecm_requested, :boolean + add_column :faxes, :ecm_used, :boolean + add_column :faxes, :image_resolution, :string + add_column :faxes, :image_size, :string + add_column :faxes, :local_station_id, :string + add_column :faxes, :result_code, :integer + add_column :faxes, :result_text, :string + add_column :faxes, :remote_station_id, :string + add_column :faxes, :success, :boolean + add_column :faxes, :transfer_rate, :integer + add_column :faxes, :t38_gateway_format, :string + add_column :faxes, :t38_peer, :string + end +end -- cgit v1.2.3