rails--rails/activerecord/test/models/shop_account.rb

9 lines
176 B
Ruby

# frozen_string_literal: true
class ShopAccount < ActiveRecord::Base
belongs_to :customer
belongs_to :customer_carrier
has_one :carrier, through: :customer_carrier
end