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

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

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

  def change
    add_column :project_ci_cd_settings, :separated_caches, :boolean, default: true, null: false
  end
end