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

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

class AddKeepDivergentRefs < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :remote_mirrors, :keep_divergent_refs, :boolean
  end
end