mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
9 lines
267 B
Ruby
9 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Associate a customer with a bought prepaid-packs of hours for machines/spaces.
|
|
# Also saves the amount of hours used
|
|
class StatisticProfilePrepaidPack < ApplicationRecord
|
|
belongs_to :prepaid_pack
|
|
belongs_to :statistic_profile
|
|
end
|