Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20230908072558_analyze_p_ci_runner_machine_builds.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fb996407649d1104979ff19fb088f0177e9308b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AnalyzePCiRunnerMachineBuilds < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def up
    disable_statement_timeout do
      execute('ANALYZE VERBOSE p_ci_runner_machine_builds;')
    end
  end

  def down
    # no-op
  end
end