summaryrefslogtreecommitdiff
path: root/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb
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