Fix deleting a scheduled status immediately deleting media attachments (#9728)

lolsob-rspec
Eugen Rochko 2019-01-06 16:38:40 +01:00 committed by GitHub
parent bf1ee883d8
commit 425cb74066
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class ScheduledStatus < ApplicationRecord
DAILY_LIMIT = 25
belongs_to :account, inverse_of: :scheduled_statuses
has_many :media_attachments, inverse_of: :scheduled_status, dependent: :destroy
has_many :media_attachments, inverse_of: :scheduled_status, dependent: :nullify
validate :validate_future_date
validate :validate_total_limit