8 lines
151 B
Ruby
8 lines
151 B
Ruby
class Rollup < ApplicationRecord
|
|
include Threadable
|
|
|
|
attr_accessor :bubble
|
|
|
|
has_many :events, -> { chronologically }, dependent: :delete_all
|
|
end
|