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