From a89cb5cbdd832d4d9e80517973aceda6bc0a3856 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 6 Feb 2020 21:08:48 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- .../20200128141125_add_index_web_hooks_on_group_id.rb | 17 +++++++++++++++++ db/schema.rb | 1 + 2 files changed, 18 insertions(+) create mode 100644 db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb (limited to 'db') diff --git a/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb b/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb new file mode 100644 index 00000000000..8c7f6426587 --- /dev/null +++ b/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +class AddIndexWebHooksOnGroupId < ActiveRecord::Migration[5.2] + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + disable_ddl_transaction! + + def up + add_concurrent_index :web_hooks, :group_id, where: "type = 'GroupHook'" + end + + def down + remove_concurrent_index :web_hooks, :group_id, where: "type = 'GroupHook'" + end +end diff --git a/db/schema.rb b/db/schema.rb index 79c00c10a2d..f55f3df31cf 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -4477,6 +4477,7 @@ ActiveRecord::Schema.define(version: 2020_02_05_143231) do t.string "encrypted_token_iv" t.string "encrypted_url" t.string "encrypted_url_iv" + t.index ["group_id"], name: "index_web_hooks_on_group_id", where: "((type)::text = 'GroupHook'::text)" t.index ["project_id"], name: "index_web_hooks_on_project_id" t.index ["type"], name: "index_web_hooks_on_type" end -- cgit v1.2.3