8 lines
124 B
Ruby
8 lines
124 B
Ruby
class Rollup < ApplicationRecord
|
|
include Threadable
|
|
|
|
belongs_to :bubble
|
|
|
|
has_many :events, -> { chronologically }
|
|
end
|