blob: 97fb05833144d3f67c165996c5b9bf0bf38418ba (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
class ShopAccount < ActiveRecord::Base
belongs_to :customer
belongs_to :customer_carrier
has_one :carrier, through: :customer_carrier
end
|