summaryrefslogtreecommitdiff
path: root/db/migrate/20210318134427_delete_security_findings_without_uuid.rb
blob: f8e0f0fb32b44f7be8c9fd70c96af4ee16e218fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

class DeleteSecurityFindingsWithoutUuid < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  disable_ddl_transaction!

  class SecurityFinding < ActiveRecord::Base
    include EachBatch

    self.table_name = 'security_findings'

    scope :without_uuid, -> { where(uuid: nil) }
  end

  def up
    SecurityFinding.without_uuid.each_batch(of: 10_000) do |relation|
      relation.delete_all
    end
  end

  def down
    # no-op
  end
end