20190530042141_add_default_git_depth_to_ci_cd_settings.rb 259 字节
Newer Older
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