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

20221114212908_add_debug_trace_to_ci_builds_metadata.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aee479dfceee94b8567a6a61b17b066d5c52fc6b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddDebugTraceToCiBuildsMetadata < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :p_ci_builds_metadata, :debug_trace_enabled, :boolean, null: false, default: false
  end
end