# == Schema Information
#
# Table name: hardware_test_logs
#
#  id          :integer          not null, primary key
#  mac         :string(255)
#  sn          :string(255)
#  ip          :string(255)
#  log         :text(65535)
#  hardware_id :integer
#  created_at  :datetime         not null
#  updated_at  :datetime         not null
#
class HardwareTestLog < ApplicationRecord
	belongs_to :hardware
end
