# == Schema Information
#
# Table name: materiel_items
#
#  id          :bigint           not null, primary key
#  materiel_id :bigint           not null
#  sn          :string(255)      not null
#  name        :string(255)      not null
#  created_at  :datetime         not null
#  updated_at  :datetime         not null
#
class MaterielItem < ApplicationRecord
  belongs_to :materiel
end
