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
761eaeef
Commit
761eaeef
authored
Oct 05, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts in database files
parent
3d22e7bd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
24 deletions
+0
-24
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_conflicts.js
...e_request_widget/components/states/mr_widget_conflicts.js
+0
-4
db/migrate/20141126120926_add_merge_request_rebase_enabled_to_projects.rb
...126120926_add_merge_request_rebase_enabled_to_projects.rb
+0
-5
db/migrate/20150827121444_add_fast_forward_option_to_project.rb
...rate/20150827121444_add_fast_forward_option_to_project.rb
+0
-5
db/schema.rb
db/schema.rb
+0
-10
No files found.
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_conflicts.js
View file @
761eaeef
...
...
@@ -12,11 +12,7 @@ export default {
<div class="mr-widget-body media">
<status-icon
status="failed"
<<<<<<< HEAD
showDisabledButton />
=======
:show-disabled-button="true" />
>>>>>>> ce/master
<div class="media-body space-children">
<span
v-if="mr.shouldBeRebased"
...
...
db/migrate/20141126120926_add_merge_request_rebase_enabled_to_projects.rb
View file @
761eaeef
# rubocop:disable all
class
AddMergeRequestRebaseEnabledToProjects
<
ActiveRecord
::
Migration
<<<<<<<
HEAD
def
change
add_column
:projects
,
:merge_requests_rebase_enabled
,
:boolean
,
default:
false
=======
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
...
...
@@ -17,6 +13,5 @@ class AddMergeRequestRebaseEnabledToProjects < ActiveRecord::Migration
def
down
remove_column
(
:projects
,
:merge_requests_rebase_enabled
)
>>>>>>>
ce
/
master
end
end
db/migrate/20150827121444_add_fast_forward_option_to_project.rb
View file @
761eaeef
# rubocop:disable all
class
AddFastForwardOptionToProject
<
ActiveRecord
::
Migration
<<<<<<<
HEAD
def
change
add_column
:projects
,
:merge_requests_ff_only_enabled
,
:boolean
,
default:
false
=======
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
...
...
@@ -19,6 +15,5 @@ class AddFastForwardOptionToProject < ActiveRecord::Migration
if
column_exists?
(
:projects
,
:merge_requests_ff_only_enabled
)
remove_column
(
:projects
,
:merge_requests_ff_only_enabled
)
end
>>>>>>>
ce
/
master
end
end
db/schema.rb
View file @
761eaeef
...
...
@@ -11,11 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
<<<<<<<
HEAD
ActiveRecord
::
Schema
.
define
(
version:
20171002105019
)
do
=======
ActiveRecord
::
Schema
.
define
(
version:
20171004121444
)
do
>>>>>>>
ce
/
master
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -1526,12 +1522,6 @@ ActiveRecord::Schema.define(version: 20171004121444) do
t
.
boolean
"disable_overriding_approvers_per_merge_request"
t
.
integer
"storage_version"
,
limit:
2
t
.
boolean
"resolve_outdated_diff_discussions"
<<<<<<<
HEAD
=======
t
.
boolean
"repository_read_only"
t
.
boolean
"merge_requests_ff_only_enabled"
,
default:
false
t
.
boolean
"merge_requests_rebase_enabled"
,
default:
false
,
null:
false
>>>>>>>
ce
/
master
end
add_index
"projects"
,
[
"ci_id"
],
name:
"index_projects_on_ci_id"
,
using: :btree
...
...
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