7 lines
114 B
Ruby
7 lines
114 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AccountRole < ApplicationRecord
|
||
|
belongs_to :account
|
||
|
belongs_to :role
|
||
|
end
|