remove reply from message journaling (#9293)

The columns:
* last_reply_id
* replies_count

are columns that exist for performance reasons only. They do not contain information about the message itself.

If they are journaled, adding a message to a forum updates the last_reply_id of the parent message. The user replying will then be shown to have updated the replied to message
pull/9313/head
ulferts 4 years ago committed by GitHub
parent 08ce0a5436
commit c1672f239c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      db/migrate/20210519141244_remove_reply_from_message_journalizing.rb

@ -0,0 +1,6 @@
class RemoveReplyFromMessageJournalizing < ActiveRecord::Migration[6.1]
def change
remove_column :message_journals, :last_reply_id, :integer
remove_column :message_journals, :replies_count, :integer, default: 0, null: false
end
end
Loading…
Cancel
Save