summaryrefslogtreecommitdiff
path: root/db/migrate/20200220180944_add_keep_divergent_refs.rb
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