summaryrefslogtreecommitdiff
path: root/db/post_migrate/20201102152945_truncate_security_findings_table.rb
blob: 8bfaa31f0de7d8f9f3d10b489ad75d7a1fbe4432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class TruncateSecurityFindingsTable < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    return unless Gitlab.dev_env_or_com?

    with_lock_retries do
      connection.execute('TRUNCATE security_findings RESTART IDENTITY')
    end
  end

  def down
    # no-op
  end
end