diff options
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/device.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/models/device.rb b/app/models/device.rb new file mode 100644 index 000000000..2782a7f38 --- /dev/null +++ b/app/models/device.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +class Device < ApplicationRecord + belongs_to :account + + validates :account, :registration_id, presence: true +end |