Fix existing boosts possibly referencing deleted toots (#17730)

Follow-up to #17693
This commit is contained in:
Claire 2022-03-09 22:44:37 +01:00 committed by GitHub
parent 9f2791eb64
commit 07a178fd37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,9 @@
class FixReblogDeletedAt < ActiveRecord::Migration[6.1]
disable_ddl_transaction!
def up
safety_assured { execute 'UPDATE statuses s SET deleted_at = r.deleted_at FROM statuses r WHERE s.reblog_of_id = r.id AND r.deleted_at IS NOT NULL' }
end
def down; end
end