class CreateRegisteredProducts < ActiveRecord::Migration
  def change
    create_table :registered_products do |t|
      t.integer :reseller_id
      t.integer :product_id
      t.integer :user_id
      t.string :product_code
      t.string :serial_number
      t.string :firmware_version
      t.string :registration_reason
      t.timestamps
    end
  end
end
