ae497aae85
Buckets destroy their bubbles, which destroy their thread entries, which destroy their threadables, which is how comments end up destroyed, and then rollups end up deleting their events
8 lines
148 B
Ruby
8 lines
148 B
Ruby
class Rollup < ApplicationRecord
|
|
include Threadable
|
|
|
|
belongs_to :bubble
|
|
|
|
has_many :events, -> { chronologically }, dependent: :delete_all
|
|
end
|