Files
fizzy/app/models/event_summary.rb
T
2024-10-25 15:03:31 -06:00

8 lines
180 B
Ruby

class EventSummary < ApplicationRecord
include Messageable
attr_accessor :bubble
has_many :events, -> { chronologically }, dependent: :delete_all, inverse_of: :summary
end