BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
92e8ad52
Commit
92e8ad52
authored
Dec 05, 2017
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge index during table creation
parent
e58ce2b7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
17 deletions
+2
-17
20170918072948_create_job_artifacts.rb
db/migrate/20170918072948_create_job_artifacts.rb
+1
-0
20171130145523_uniqueness_contraint_job_artifact_file_type.rb
...1130145523_uniqueness_contraint_job_artifact_file_type.rb
+0
-16
schema.rb
db/schema.rb
+1
-1
No files found.
db/migrate/20170918072948_create_job_artifacts.rb
View file @
92e8ad52
...
...
@@ -17,6 +17,7 @@ class CreateJobArtifacts < ActiveRecord::Migration
t
.
string
:file
t
.
foreign_key
:ci_builds
,
column: :job_id
,
on_delete: :cascade
t
.
index
[
:job_id
,
:file_type
],
unique:
true
end
end
end
db/migrate/20171130145523_uniqueness_contraint_job_artifact_file_type.rb
deleted
100644 → 0
View file @
e58ce2b7
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 @
92e8ad52
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201711
30145523
)
do
ActiveRecord
::
Schema
.
define
(
version:
201711
24150326
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
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