diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-03-09 22:44:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 22:44:37 +0100 |
commit | 07a178fd378f00003647e64c82139eac504c7fb0 (patch) | |
tree | dc74b83f72e5557b4ce003eb5d0e1c747b6b241b /db | |
parent | 9f2791eb64d5d19418561270f79071c185876d20 (diff) |
Fix existing boosts possibly referencing deleted toots (#17730)
Follow-up to #17693
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20220309213005_fix_reblog_deleted_at.rb | 9 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/db/migrate/20220309213005_fix_reblog_deleted_at.rb b/db/migrate/20220309213005_fix_reblog_deleted_at.rb new file mode 100644 index 000000000..8ec1813d9 --- /dev/null +++ b/db/migrate/20220309213005_fix_reblog_deleted_at.rb @@ -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 diff --git a/db/schema.rb b/db/schema.rb index 6251fa28c..79e9b0f4d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2022_03_07_094650) do +ActiveRecord::Schema.define(version: 2022_03_09_213005) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |