summaryrefslogtreecommitdiff
path: root/db/migrate/20200131140428_create_index_on_auto_stop_in.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200131140428_create_index_on_auto_stop_in.rb')
-rw-r--r--db/migrate/20200131140428_create_index_on_auto_stop_in.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20200131140428_create_index_on_auto_stop_in.rb b/db/migrate/20200131140428_create_index_on_auto_stop_in.rb
deleted file mode 100644
index 526e7dcfe30..00000000000
--- a/db/migrate/20200131140428_create_index_on_auto_stop_in.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class CreateIndexOnAutoStopIn < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :environments, %i[state auto_stop_at], where: "auto_stop_at IS NOT NULL AND state = 'available'"
- end
-
- def down
- remove_concurrent_index :environments, %i[state auto_stop_at]
- end
-end