Backfill note subscriptions

This commit is contained in:
Anton Khorev 2024-10-23 18:20:25 +03:00
parent e15a92a302
commit c848a88240
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,15 @@
class BackfillNoteSubscriptions < ActiveRecord::Migration[7.2]
class NoteComment < ApplicationRecord; end
class NoteSubscription < ApplicationRecord; end
disable_ddl_transaction!
def up
attrs = %w[user_id note_id]
NoteComment.in_batches(:of => 1000) do |note_comments|
rows = note_comments.distinct.where.not(:author_id => nil).pluck(:author_id, :note_id)
NoteSubscription.upsert_all(rows.map { |r| attrs.zip(r).to_h })
end
end
end

View file

@ -3397,6 +3397,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('23'),
('22'),
('21'),
('20241023004427'),
('20241022141247'),
('20240913171951'),
('20240912181413'),