mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
8 lines
245 B
Ruby
8 lines
245 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Save the association between a Reservation and a PrepaidPack to keep the usage history.
|
||
|
class PrepaidPackReservation < ApplicationRecord
|
||
|
belongs_to :statistic_profile_prepaid_pack
|
||
|
belongs_to :reservation
|
||
|
end
|