about summary refs log tree commit diff
path: root/app/models/device.rb
blob: 2782a7f383ee9a1d8166a0d3722f92fc1d633627 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Device < ApplicationRecord
  belongs_to :account

  validates :account, :registration_id, presence: true
end