Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
63f63d88
Commit
63f63d88
authored
Feb 20, 2020
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add keep_divergent_refs to remote_mirrors table
parent
f1dd8af7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
changelogs/unreleased/rs-keep-divergent-refs-column.yml
changelogs/unreleased/rs-keep-divergent-refs-column.yml
+5
-0
db/migrate/20200220180944_add_keep_divergent_refs.rb
db/migrate/20200220180944_add_keep_divergent_refs.rb
+11
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
changelogs/unreleased/rs-keep-divergent-refs-column.yml
0 → 100644
View file @
63f63d88
---
title
:
Add keep_divergent_refs to remote_mirrors table
merge_request
:
author
:
type
:
other
db/migrate/20200220180944_add_keep_divergent_refs.rb
0 → 100644
View file @
63f63d88
# 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
db/schema.rb
View file @
63f63d88
...
...
@@ -10,7 +10,7 @@
#
# 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
enable_extension
"pg_trgm"
...
...
@@ -3687,6 +3687,7 @@ ActiveRecord::Schema.define(version: 2020_02_14_034836) do
t
.
boolean
"only_protected_branches"
,
default:
false
,
null:
false
t
.
string
"remote_name"
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
[
"project_id"
],
name:
"index_remote_mirrors_on_project_id"
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment