2022-11-18 16:42:11 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# UserProfileCustomField store values for custom fields per user's profile
|
2022-03-18 19:44:30 +01:00
|
|
|
class UserProfileCustomField < ApplicationRecord
|
|
|
|
belongs_to :invoicing_profile
|
|
|
|
belongs_to :profile_custom_field
|
|
|
|
end
|