Add first_reply_created event in conversation (#4576)

This commit is contained in:
Aswin Dev P.S
2022-05-19 09:46:33 +05:30
committed by GitHub
parent 20565d09c0
commit 8538660bbd
6 changed files with 117 additions and 22 deletions

View File

@@ -0,0 +1,23 @@
class AddFirstReplyActivityAtToConversation < ActiveRecord::Migration[6.1]
def change
add_column :conversations, :first_reply_created_at, :datetime
add_index :conversations, :first_reply_created_at
# rubocop:disable Rails/SkipsModelValidations
::Conversation.update_all(first_reply_created_at: Time.now.utc)
# rubocop:enable Rails/SkipsModelValidations
backfill_first_reply_activity_at_to_conversations
end
private
def backfill_first_reply_activity_at_to_conversations
::Account.find_in_batches do |account_batch|
Rails.logger.info "Migrated till #{account_batch.first.id}\n"
account_batch.each do |account|
Migration::ConversationsFirstReplySchedulerJob.perform_later(account)
end
end
end
end