diff options
Diffstat (limited to 'app/models/concerns')
-rw-r--r-- | app/models/concerns/account_associations.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/models/concerns/account_associations.rb b/app/models/concerns/account_associations.rb index 5a54f2208..14f64cb71 100644 --- a/app/models/concerns/account_associations.rb +++ b/app/models/concerns/account_associations.rb @@ -69,5 +69,14 @@ module AccountAssociations # Custom metadata has_one :metadata, class_name: 'AccountMetadata', inverse_of: :account, dependent: :destroy + + # Delayed posts + has_many :publishing_delays, inverse_of: :account, dependent: :destroy + + # Self-destructing posts + has_many :destructing_statuses, inverse_of: :account, dependent: :destroy + + # Queued boosts + has_many :queued_boosts, inverse_of: :account, dependent: :destroy end end |