12 lines
244 B
Ruby
12 lines
244 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ContactsList < ApplicationRecord
|
||
|
################
|
||
|
# Associations #
|
||
|
################
|
||
|
|
||
|
has_one :account, dependent: :restrict_with_exception
|
||
|
|
||
|
has_one :person, dependent: :restrict_with_exception
|
||
|
end
|