summaryrefslogtreecommitdiff
path: root/db/migrate/20151210125931_add_index_to_ci_tables.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20151210125931_add_index_to_ci_tables.rb')
-rw-r--r--db/migrate/20151210125931_add_index_to_ci_tables.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20151210125931_add_index_to_ci_tables.rb b/db/migrate/20151210125931_add_index_to_ci_tables.rb
deleted file mode 100644
index 2cbc5b50538..00000000000
--- a/db/migrate/20151210125931_add_index_to_ci_tables.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# rubocop:disable all
-class AddIndexToCiTables < ActiveRecord::Migration[4.2]
- def change
- add_index :ci_builds, :gl_project_id
- add_index :ci_runner_projects, :gl_project_id
- add_index :ci_triggers, :gl_project_id
- add_index :ci_variables, :gl_project_id
- add_index :projects, :runners_token
- add_index :projects, :builds_enabled
- add_index :projects, [:builds_enabled, :shared_runners_enabled]
- add_index :projects, [:ci_id]
- end
-end