Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20151016195451_add_ci_builds_and_projects_indexes.rb')
-rw-r--r--db/migrate/20151016195451_add_ci_builds_and_projects_indexes.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/db/migrate/20151016195451_add_ci_builds_and_projects_indexes.rb b/db/migrate/20151016195451_add_ci_builds_and_projects_indexes.rb
deleted file mode 100644
index c8a79f25ae5..00000000000
--- a/db/migrate/20151016195451_add_ci_builds_and_projects_indexes.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# rubocop:disable all
-class AddCiBuildsAndProjectsIndexes < ActiveRecord::Migration[4.2]
- def change
- add_index :ci_projects, :gitlab_id
- add_index :ci_projects, :shared_runners_enabled
-
- add_index :ci_builds, :type
- add_index :ci_builds, :status
- end
-end