Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
projects.thm.de
GitLab
Commits
45cecae9
Commit
45cecae9
authored
Feb 07, 2019
by
James Fargher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move ChatOps migrations to Core
parent
35bc3906
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
db/migrate/20180209115333_create_chatops_tables.rb
db/migrate/20180209115333_create_chatops_tables.rb
+26
-0
db/schema.rb
db/schema.rb
+10
-0
No files found.
db/migrate/20180209115333_create_chatops_tables.rb
0 → 100644
View file @
45cecae9
# frozen_string_literal: true
class
CreateChatopsTables
<
ActiveRecord
::
Migration
[
4.2
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
change
create_table
:ci_pipeline_chat_data
,
id: :bigserial
do
|
t
|
t
.
integer
:pipeline_id
,
null:
false
t
.
references
:chat_name
,
foreign_key:
{
on_delete: :cascade
},
null:
false
t
.
text
:response_url
,
null:
false
# A pipeline can only contain one row in this table, hence this index is
# unique.
t
.
index
:pipeline_id
,
unique:
true
t
.
index
:chat_name_id
end
# rubocop:disable Migration/AddConcurrentForeignKey
add_foreign_key
:ci_pipeline_chat_data
,
:ci_pipelines
,
column: :pipeline_id
,
on_delete: :cascade
end
end
db/schema.rb
View file @
45cecae9
...
...
@@ -419,6 +419,14 @@
t
.
index
[
"project_id"
],
name:
"index_ci_job_artifacts_on_project_id"
,
using: :btree
end
create_table
"ci_pipeline_chat_data"
,
id: :bigserial
,
force: :cascade
do
|
t
|
t
.
integer
"pipeline_id"
,
null:
false
t
.
integer
"chat_name_id"
,
null:
false
t
.
text
"response_url"
,
null:
false
t
.
index
[
"chat_name_id"
],
name:
"index_ci_pipeline_chat_data_on_chat_name_id"
,
using: :btree
t
.
index
[
"pipeline_id"
],
name:
"index_ci_pipeline_chat_data_on_pipeline_id"
,
unique:
true
,
using: :btree
end
create_table
"ci_pipeline_schedule_variables"
,
force: :cascade
do
|
t
|
t
.
string
"key"
,
null:
false
t
.
text
"value"
...
...
@@ -2341,6 +2349,8 @@
add_foreign_key
"ci_group_variables"
,
"namespaces"
,
column:
"group_id"
,
name:
"fk_33ae4d58d8"
,
on_delete: :cascade
add_foreign_key
"ci_job_artifacts"
,
"ci_builds"
,
column:
"job_id"
,
on_delete: :cascade
add_foreign_key
"ci_job_artifacts"
,
"projects"
,
on_delete: :cascade
add_foreign_key
"ci_pipeline_chat_data"
,
"chat_names"
,
on_delete: :cascade
add_foreign_key
"ci_pipeline_chat_data"
,
"ci_pipelines"
,
column:
"pipeline_id"
,
on_delete: :cascade
add_foreign_key
"ci_pipeline_schedule_variables"
,
"ci_pipeline_schedules"
,
column:
"pipeline_schedule_id"
,
name:
"fk_41c35fda51"
,
on_delete: :cascade
add_foreign_key
"ci_pipeline_schedules"
,
"projects"
,
name:
"fk_8ead60fcc4"
,
on_delete: :cascade
add_foreign_key
"ci_pipeline_schedules"
,
"users"
,
column:
"owner_id"
,
name:
"fk_9ea99f58d2"
,
on_delete: :nullify
...
...
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