Files
fizzy/app/models/event.rb
T
2024-10-24 15:50:00 -06:00

12 lines
271 B
Ruby

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