|
|
@ -3,7 +3,7 @@ class AddInReplyToAccountIdToStatuses < ActiveRecord::Migration[5.0] |
|
|
|
add_column :statuses, :in_reply_to_account_id, :integer, null: true, default: nil |
|
|
|
|
|
|
|
ActiveRecord::Base.transaction do |
|
|
|
Status.where.not(in_reply_to_id: nil).includes(:thread).find_each do |status| |
|
|
|
Status.unscoped.where.not(in_reply_to_id: nil).includes(:thread).find_each do |status| |
|
|
|
next if status.thread.nil? |
|
|
|
|
|
|
|
status.in_reply_to_account_id = status.thread.account_id |
|
|
|