1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00
fab-manager/app/models/statistic_profile_prepaid_pack.rb

9 lines
267 B
Ruby
Raw Normal View History

2021-06-21 14:58:49 +02:00
# frozen_string_literal: true
# Associate a customer with a bought prepaid-packs of hours for machines/spaces.
# Also saves the amount of hours used
2021-06-21 17:39:48 +02:00
class StatisticProfilePrepaidPack < ApplicationRecord
2021-06-21 14:58:49 +02:00
belongs_to :prepaid_pack
2021-06-21 17:39:48 +02:00
belongs_to :statistic_profile
2021-06-21 14:58:49 +02:00
end