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

12 lines
313 B
Ruby

class Event < ApplicationRecord
include Assignments, Stages
belongs_to :creator, class_name: "User"
belongs_to :bubble, touch: true
belongs_to :summary, touch: true, class_name: "EventSummary"
has_one :account, through: :creator
scope :chronologically, -> { order created_at: :asc, id: :desc }
end