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/20180511090724_add_index_on_ci_runners_runner_type.rb')
-rw-r--r--db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb b/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb
deleted file mode 100644
index 4913b8602c9..00000000000
--- a/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-class AddIndexOnCiRunnersRunnerType < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :ci_runners, :runner_type
- end
-
- def down
- # rubocop:disable Migration/RemoveIndex
- remove_index :ci_runners, :runner_type
- end
-end