debian-mirror-gitlab/db/migrate/20200220180944_add_keep_divergent_refs.rb

12 lines
241 B
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# 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