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

20230329091107_truncate_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: bf5d17857f61699fcd4072c12d2d1b645389e866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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

  def up
    truncate_tables!('p_ci_runner_machine_builds')
  end

  # no-op
  def down; end
end