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
3eb8435f
Commit
3eb8435f
authored
May 08, 2017
by
Z.J. van de Weg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a foreign key to ci_variables to projects
Variables shouldn't exist without a project, so a foreign key was added with CASCADE'ing effects.
parent
38388338
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
3 deletions
+29
-3
20170508153950_add_not_null_contraints_to_ci_variables.rb
...20170508153950_add_not_null_contraints_to_ci_variables.rb
+0
-0
20170508190732_add_foreign_key_to_ci_variables.rb
db/migrate/20170508190732_add_foreign_key_to_ci_variables.rb
+25
-0
schema.rb
db/schema.rb
+4
-3
No files found.
db/
post_
migrate/20170508153950_add_not_null_contraints_to_ci_variables.rb
→
db/migrate/20170508153950_add_not_null_contraints_to_ci_variables.rb
View file @
3eb8435f
File moved
db/migrate/20170508190732_add_foreign_key_to_ci_variables.rb
0 → 100644
View file @
3eb8435f
class
AddForeignKeyToCiVariables
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
execute
<<~
SQL
DELETE FROM ci_variables
WHERE NOT EXISTS (
SELECT true
FROM projects
WHERE projects.id = ci_variables.project_id
)
OR ci_variables.project_id IS NULL
SQL
add_concurrent_foreign_key
(
:ci_variables
,
:projects
,
column: :project_id
)
end
def
down
remove_foreign_key
(
:ci_variables
,
column: :project_id
)
end
end
db/schema.rb
View file @
3eb8435f
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201705081
70547
)
do
ActiveRecord
::
Schema
.
define
(
version:
201705081
90732
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -347,12 +347,12 @@ ActiveRecord::Schema.define(version: 20170508170547) do
add_index
"ci_triggers"
,
[
"project_id"
],
name:
"index_ci_triggers_on_project_id"
,
using: :btree
create_table
"ci_variables"
,
force: :cascade
do
|
t
|
t
.
string
"key"
t
.
string
"key"
,
null:
false
t
.
text
"value"
t
.
text
"encrypted_value"
t
.
string
"encrypted_value_salt"
t
.
string
"encrypted_value_iv"
t
.
integer
"project_id"
t
.
integer
"project_id"
,
null:
false
end
add_index
"ci_variables"
,
[
"project_id"
],
name:
"index_ci_variables_on_project_id"
,
using: :btree
...
...
@@ -1417,6 +1417,7 @@ ActiveRecord::Schema.define(version: 20170508170547) do
add_foreign_key
"ci_pipelines"
,
"ci_pipelines"
,
column:
"auto_canceled_by_id"
,
name:
"fk_262d4c2d19"
,
on_delete: :nullify
add_foreign_key
"ci_trigger_requests"
,
"ci_triggers"
,
column:
"trigger_id"
,
name:
"fk_b8ec8b7245"
,
on_delete: :cascade
add_foreign_key
"ci_triggers"
,
"users"
,
column:
"owner_id"
,
name:
"fk_e8e10d1964"
,
on_delete: :cascade
add_foreign_key
"ci_variables"
,
"projects"
,
name:
"fk_ada5eb64b3"
,
on_delete: :cascade
add_foreign_key
"container_repositories"
,
"projects"
add_foreign_key
"issue_assignees"
,
"issues"
,
on_delete: :cascade
add_foreign_key
"issue_assignees"
,
"users"
,
on_delete: :cascade
...
...
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