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
592e0877
Commit
592e0877
authored
Nov 30, 2017
by
Zeger-Jan van de Weg
Committed by
Kamil Trzcinski
Dec 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add unique index on job_id and file_type
parent
ab02bd69
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
db/migrate/20171130145523_uniqueness_contraint_job_artifact_file_type.rb
...1130145523_uniqueness_contraint_job_artifact_file_type.rb
+16
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
db/migrate/20171130145523_uniqueness_contraint_job_artifact_file_type.rb
0 → 100644
View file @
592e0877
class
UniquenessContraintJobArtifactFileType
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:ci_job_artifacts
,
[
:job_id
,
:file_type
],
unique:
true
end
def
down
remove_concurrent_index
:ci_job_artifacts
,
[
:job_id
,
:file_type
]
end
end
db/schema.rb
View file @
592e0877
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201711
24150326
)
do
ActiveRecord
::
Schema
.
define
(
version:
201711
30145523
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -330,6 +330,7 @@ ActiveRecord::Schema.define(version: 20171124150326) do
end
add_index
"ci_job_artifacts"
,
[
"file_type"
],
name:
"index_ci_job_artifacts_on_file_type"
,
using: :btree
add_index
"ci_job_artifacts"
,
[
"job_id"
,
"file_type"
],
name:
"index_ci_job_artifacts_on_job_id_and_file_type"
,
unique:
true
,
using: :btree
add_index
"ci_job_artifacts"
,
[
"job_id"
],
name:
"index_ci_job_artifacts_on_job_id"
,
using: :btree
add_index
"ci_job_artifacts"
,
[
"project_id"
],
name:
"index_ci_job_artifacts_on_project_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