2022-01-12 17:13:50 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RepositoryLedgerRecord < ApplicationRecord
|
2022-01-20 12:44:57 +01:00
|
|
|
belongs_to :repository_stock_value, optional: true
|
|
|
|
belongs_to :reference, polymorphic: true
|
|
|
|
belongs_to :user
|
2022-01-12 17:13:50 +01:00
|
|
|
end
|