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