2018-03-09 11:56:44 -05:00
|
|
|
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
|
2018-11-13 02:27:31 -05:00
|
|
|
class AddPartialIndexesOnTodos < ActiveRecord::Migration[4.2]
|
2018-03-09 11:56:44 -05:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
# Set this constant to true if this migration requires downtime.
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2018-07-25 04:59:23 -04:00
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
INDEX_NAME_PENDING = "index_todos_on_user_id_and_id_pending"
|
|
|
|
INDEX_NAME_DONE = "index_todos_on_user_id_and_id_done"
|
2018-03-09 11:56:44 -05:00
|
|
|
|
|
|
|
def up
|
|
|
|
unless index_exists?(:todos, [:user_id, :id], name: INDEX_NAME_PENDING)
|
|
|
|
add_concurrent_index(:todos, [:user_id, :id], where: "state='pending'", name: INDEX_NAME_PENDING)
|
|
|
|
end
|
2018-07-25 04:59:23 -04:00
|
|
|
|
2018-03-09 11:56:44 -05:00
|
|
|
unless index_exists?(:todos, [:user_id, :id], name: INDEX_NAME_DONE)
|
|
|
|
add_concurrent_index(:todos, [:user_id, :id], where: "state='done'", name: INDEX_NAME_DONE)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_concurrent_index(:todos, [:user_id, :id], where: "state='pending'", name: INDEX_NAME_PENDING)
|
|
|
|
remove_concurrent_index(:todos, [:user_id, :id], where: "state='done'", name: INDEX_NAME_DONE)
|
2018-07-25 04:59:23 -04:00
|
|
|
end
|
2018-03-09 11:56:44 -05:00
|
|
|
end
|