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
a4dc5f79
Commit
a4dc5f79
authored
Jun 15, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make project_id, iid unique for deployments
parent
9e487100
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
469 additions
and
2 deletions
+469
-2
db/migrate/20160610204157_add_deployments.rb
db/migrate/20160610204157_add_deployments.rb
+1
-1
db/schema.rb
db/schema.rb
+468
-1
No files found.
db/migrate/20160610204157_add_deployments.rb
View file @
a4dc5f79
...
...
@@ -20,7 +20,7 @@ class AddDeployments < ActiveRecord::Migration
end
add_index
:deployments
,
:project_id
add_index
:deployments
,
[
:project_id
,
:iid
]
add_index
:deployments
,
[
:project_id
,
:iid
]
,
unique:
true
add_index
:deployments
,
[
:project_id
,
:environment_id
]
add_index
:deployments
,
[
:project_id
,
:environment_id
,
:iid
]
end
...
...
db/schema.rb
View file @
a4dc5f79
This diff is collapsed.
Click to expand it.
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