9 lines
177 B
Ruby
9 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ResidentRegistration < ApplicationRecord
|
|
################
|
|
# Associations #
|
|
################
|
|
|
|
belongs_to :person, optional: true
|
|
end
|