class RegisteredProduct < ActiveRecord::Base
  # Set up relations to other tables
  #has_one :registration_survey, :foreign_key => "regID", :primary_key => "regID", :class_name => "RegistrationSurvey"
  has_one :product
  has_one :reseller
  belongs_to :user
end

=begin
      t.string :reseller
      t.integer :product_id
      t.integer :user_id
      t.string :product_code
      t.string :serial_number
      t.string :firmware_version
      t.string :registration_reason
=end