summaryrefslogtreecommitdiff
path: root/db/migrate/20170313213916_add_index_to_user_ghost.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170313213916_add_index_to_user_ghost.rb')
-rw-r--r--db/migrate/20170313213916_add_index_to_user_ghost.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/db/migrate/20170313213916_add_index_to_user_ghost.rb b/db/migrate/20170313213916_add_index_to_user_ghost.rb
deleted file mode 100644
index 66e57b444a0..00000000000
--- a/db/migrate/20170313213916_add_index_to_user_ghost.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-# rubocop:disable RemoveIndex
-class AddIndexToUserGhost < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- # When a migration requires downtime you **must** uncomment the following
- # constant and define a short and easy to understand explanation as to why the
- # migration requires downtime.
- # DOWNTIME_REASON = ''
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :users, :ghost
- end
-
- def down
- remove_index :users, :ghost
- end
-end