ectomobile/app/models/raspberry.rb

11 lines
225 B
Ruby

# frozen_string_literal: true
class Raspberry < ApplicationRecord
has_many :readings
has_many :arduinos
has_many :public_keys
validates_presence_of :name, :serial_number
validates_uniqueness_of :serial_number
end