gitlab-org--gitlab-foss/db/migrate/20200220180944_add_keep_div...

12 lines
241 B
Ruby

# 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