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

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

class AddDefaultGitDepthToCiCdSettings < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :project_ci_cd_settings, :default_git_depth, :integer
  end
end