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

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

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

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