demarches-normaliennes/db/migrate/20220407081538_backfill_export_status.rb

11 lines
212 B
Ruby
Raw Normal View History

class BackfillExportStatus < ActiveRecord::Migration[6.1]
disable_ddl_transaction!
def change
Export.in_batches do |relation|
relation.update_all statut: "tous"
sleep(0.01)
end
end
end