Merge branch 'move_chatops_to_core_migration' into 'master'
Move ChatOps migrations to Core See merge request gitlab-org/gitlab-ce!24986
This commit is contained in:
commit
813df901e8
2 changed files with 36 additions and 0 deletions
26
db/migrate/20180209115333_create_chatops_tables.rb
Normal file
26
db/migrate/20180209115333_create_chatops_tables.rb
Normal file
|
@ -0,0 +1,26 @@
|
|||
# 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
|
10
db/schema.rb
10
db/schema.rb
|
@ -421,6 +421,14 @@ ActiveRecord::Schema.define(version: 20190204115450) do
|
|||
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"
|
||||
|
@ -2345,6 +2353,8 @@ ActiveRecord::Schema.define(version: 20190204115450) do
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue