1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Make data migration more merciful

This commit is contained in:
Eugen Rochko 2016-12-02 15:09:44 +01:00
parent 8cfcc52876
commit 165498f110

View file

@ -7,7 +7,7 @@ class AddInReplyToAccountIdToStatuses < ActiveRecord::Migration[5.0]
next if status.thread.nil?
status.in_reply_to_account_id = status.thread.account_id
status.save!
status.save(validate: false)
end
end
end