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

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

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

  def change
    add_column :ci_pipeline_variables, :raw, :boolean, null: false, default: true
  end
end