summaryrefslogtreecommitdiff
path: root/db/migrate/20170502140503_create_index_ci_builds_auto_canceled_by_id.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170502140503_create_index_ci_builds_auto_canceled_by_id.rb')
-rw-r--r--db/migrate/20170502140503_create_index_ci_builds_auto_canceled_by_id.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/migrate/20170502140503_create_index_ci_builds_auto_canceled_by_id.rb b/db/migrate/20170502140503_create_index_ci_builds_auto_canceled_by_id.rb
deleted file mode 100644
index f5148f6fdb8..00000000000
--- a/db/migrate/20170502140503_create_index_ci_builds_auto_canceled_by_id.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-class CreateIndexCiBuildsAutoCanceledById < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- # MySQL would already have the index
- unless index_exists?(:ci_builds, :auto_canceled_by_id)
- add_concurrent_index(:ci_builds, :auto_canceled_by_id)
- end
- end
-
- def down
- # We cannot remove index for MySQL because it's needed for foreign key
- if Gitlab::Database.postgresql?
- remove_concurrent_index(:ci_builds, :auto_canceled_by_id)
- end
- end
-end