diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-16 12:09:12 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-16 12:09:12 +0000 |
commit | cbfe03ae04a52d9825ff7cbeccdfe5d313adf6a2 (patch) | |
tree | e4879b35d019d3bbba1689f3ac4c48b81bf7b451 /db | |
parent | 3fd97b4bba24ca412112aad025a38a32c7a6cf8c (diff) | |
download | gitlab-ce-cbfe03ae04a52d9825ff7cbeccdfe5d313adf6a2.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
3 files changed, 46 insertions, 2 deletions
diff --git a/db/migrate/20200306192548_add_index_on_project_id_and_type_to_services.rb b/db/migrate/20200306192548_add_index_on_project_id_and_type_to_services.rb new file mode 100644 index 00000000000..9deb3c2832d --- /dev/null +++ b/db/migrate/20200306192548_add_index_on_project_id_and_type_to_services.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +class AddIndexOnProjectIdAndTypeToServices < ActiveRecord::Migration[6.0] + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + INDEX_NAME = 'index_services_on_project_id' + + disable_ddl_transaction! + + def up + add_concurrent_index :services, [:project_id, :type] + + remove_concurrent_index_by_name :services, INDEX_NAME + end + + def down + add_concurrent_index :services, :project_id, name: INDEX_NAME + + remove_concurrent_index :services, [:project_id, :type] + end +end diff --git a/db/migrate/20200306193236_add_index_on_creator_id_and_created_at_to_projects.rb b/db/migrate/20200306193236_add_index_on_creator_id_and_created_at_to_projects.rb new file mode 100644 index 00000000000..913383d32f4 --- /dev/null +++ b/db/migrate/20200306193236_add_index_on_creator_id_and_created_at_to_projects.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +class AddIndexOnCreatorIdAndCreatedAtToProjects < ActiveRecord::Migration[6.0] + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + INDEX_NAME = 'index_projects_on_creator_id' + + disable_ddl_transaction! + + def up + add_concurrent_index :projects, [:creator_id, :created_at] + + remove_concurrent_index_by_name :projects, INDEX_NAME + end + + def down + add_concurrent_index :projects, :creator_id, name: INDEX_NAME + + remove_concurrent_index :projects, [:creator_id, :created_at] + end +end diff --git a/db/schema.rb b/db/schema.rb index 741bb2b9262..83aa4a32ffb 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -3486,8 +3486,8 @@ ActiveRecord::Schema.define(version: 2020_03_12_163407) do t.index ["created_at", "id"], name: "index_projects_api_created_at_id_desc", order: { id: :desc } t.index ["created_at", "id"], name: "index_projects_api_vis20_created_at", where: "(visibility_level = 20)" t.index ["created_at", "id"], name: "index_projects_on_created_at_and_id" + t.index ["creator_id", "created_at"], name: "index_projects_on_creator_id_and_created_at" t.index ["creator_id", "created_at"], name: "index_projects_on_mirror_creator_id_created_at", where: "((mirror = true) AND (mirror_trigger_builds = true))" - t.index ["creator_id"], name: "index_projects_on_creator_id" t.index ["description"], name: "index_projects_on_description_trigram", opclass: :gin_trgm_ops, using: :gin t.index ["id", "repository_storage", "last_repository_updated_at"], name: "idx_projects_on_repository_storage_last_repository_updated_at" t.index ["id"], name: "index_on_id_partial_with_legacy_storage", where: "((storage_version < 2) OR (storage_version IS NULL))" @@ -3961,7 +3961,7 @@ ActiveRecord::Schema.define(version: 2020_03_12_163407) do t.boolean "comment_on_event_enabled", default: true, null: false t.boolean "template", default: false t.boolean "instance", default: false, null: false - t.index ["project_id"], name: "index_services_on_project_id" + t.index ["project_id", "type"], name: "index_services_on_project_id_and_type" t.index ["template"], name: "index_services_on_template" t.index ["type", "instance"], name: "index_services_on_type_and_instance", unique: true, where: "(instance IS TRUE)" t.index ["type", "template"], name: "index_services_on_type_and_template", unique: true, where: "(template IS TRUE)" |