9 lines
215 B
Ruby
9 lines
215 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Migrations::BackfillRowIdJob < ApplicationJob
|
|
def perform(batch)
|
|
batch.each do |(row_id, champ_ids)|
|
|
Champ.where(id: champ_ids).update_all(row_id:)
|
|
end
|
|
end
|
|
end
|