6 lines
126 B
Ruby
6 lines
126 B
Ruby
class Rollup < ApplicationRecord
|
|
include Threadable
|
|
|
|
has_many :events, -> { chronologically }, dependent: :delete_all
|
|
end
|