1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-03 14:24:23 +01:00
fab-manager/app/models/concerns/stat_reservation_concern.rb

15 lines
332 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Defines the reservation statistics data model
2016-03-23 18:39:41 +01:00
module StatReservationConcern
extend ActiveSupport::Concern
included do
attribute :reservationId, Integer
2023-07-20 16:55:22 +02:00
attribute :reservationContextId, Integer
2016-03-23 18:39:41 +01:00
attribute :ca, Float
attribute :name, String
attribute :coupon, String
2016-03-23 18:39:41 +01:00
end
end