1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/prepaid_pack_reservation.rb
2023-03-09 13:23:42 +01:00

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