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
b7b82324
Commit
b7b82324
authored
May 01, 2018
by
Dylan Griffith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify AddCiRunnerGroups migration
parent
7e032589
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
12 deletions
+8
-12
20170301101006_add_ci_runner_groups.rb
db/migrate/20170301101006_add_ci_runner_groups.rb
+6
-10
schema.rb
db/schema.rb
+2
-2
No files found.
db/migrate/20170301101006_add_ci_runner_groups.rb
View file @
b7b82324
...
...
@@ -5,19 +5,15 @@ class AddCiRunnerGroups < ActiveRecord::Migration
disable_ddl_transaction!
def
up
def
change
create_table
:ci_runner_groups
do
|
t
|
t
.
integer
:runner_id
t
.
integer
:group_id
end
add_concurrent_index
:ci_runner_groups
,
:group_id
add_concurrent_index
:ci_runner_groups
,
[
:runner_id
,
:group_id
],
unique:
true
add_concurrent_foreign_key
:ci_runner_groups
,
:ci_runners
,
column: :runner_id
,
on_delete: :cascade
add_concurrent_foreign_key
:ci_runner_groups
,
:namespaces
,
column: :group_id
,
on_delete: :cascade
end
def
down
drop_table
:ci_runner_groups
t
.
index
[
:runner_id
,
:group_id
],
unique:
true
t
.
index
:group_id
t
.
foreign_key
:ci_runners
,
column: :runner_id
,
on_delete: :cascade
t
.
foreign_key
:namespaces
,
column: :group_id
,
on_delete: :cascade
end
end
end
db/schema.rb
View file @
b7b82324
...
...
@@ -2096,8 +2096,8 @@ ActiveRecord::Schema.define(version: 20180430143705) do
add_foreign_key
"ci_pipelines"
,
"ci_pipeline_schedules"
,
column:
"pipeline_schedule_id"
,
name:
"fk_3d34ab2e06"
,
on_delete: :nullify
add_foreign_key
"ci_pipelines"
,
"ci_pipelines"
,
column:
"auto_canceled_by_id"
,
name:
"fk_262d4c2d19"
,
on_delete: :nullify
add_foreign_key
"ci_pipelines"
,
"projects"
,
name:
"fk_86635dbd80"
,
on_delete: :cascade
add_foreign_key
"ci_runner_groups"
,
"ci_runners"
,
column:
"runner_id"
,
name:
"fk_d8a0baa93b"
,
on_delete: :cascade
add_foreign_key
"ci_runner_groups"
,
"namespaces"
,
column:
"group_id"
,
name:
"fk_cdafb3bbba"
,
on_delete: :cascade
add_foreign_key
"ci_runner_groups"
,
"ci_runners"
,
column:
"runner_id"
,
on_delete: :cascade
add_foreign_key
"ci_runner_groups"
,
"namespaces"
,
column:
"group_id"
,
on_delete: :cascade
add_foreign_key
"ci_runner_projects"
,
"projects"
,
name:
"fk_4478a6f1e4"
,
on_delete: :cascade
add_foreign_key
"ci_stages"
,
"ci_pipelines"
,
column:
"pipeline_id"
,
name:
"fk_fb57e6cc56"
,
on_delete: :cascade
add_foreign_key
"ci_stages"
,
"projects"
,
name:
"fk_2360681d1d"
,
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