Commit 63f63d88 authored by Robert Speicher's avatar Robert Speicher

Add keep_divergent_refs to remote_mirrors table

parent f1dd8af7
---
title: Add keep_divergent_refs to remote_mirrors table
merge_request:
author:
type: other
# 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
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2020_02_14_034836) do ActiveRecord::Schema.define(version: 2020_02_20_180944) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "pg_trgm" enable_extension "pg_trgm"
...@@ -3687,6 +3687,7 @@ ActiveRecord::Schema.define(version: 2020_02_14_034836) do ...@@ -3687,6 +3687,7 @@ ActiveRecord::Schema.define(version: 2020_02_14_034836) do
t.boolean "only_protected_branches", default: false, null: false t.boolean "only_protected_branches", default: false, null: false
t.string "remote_name" t.string "remote_name"
t.boolean "error_notification_sent" t.boolean "error_notification_sent"
t.boolean "keep_divergent_refs"
t.index ["last_successful_update_at"], name: "index_remote_mirrors_on_last_successful_update_at" t.index ["last_successful_update_at"], name: "index_remote_mirrors_on_last_successful_update_at"
t.index ["project_id"], name: "index_remote_mirrors_on_project_id" t.index ["project_id"], name: "index_remote_mirrors_on_project_id"
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment