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

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

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

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