summaryrefslogtreecommitdiff
path: root/app/models/user_account_address.rb
blob: 0be86f269d90118fa0ca2008638646ec1855f065 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

# UserAccountAddress join table
class UserAccountAddress < ApplicationRecord
  belongs_to :user_account
  belongs_to :address
end