2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2019-01-03 12:48:30 +05:30
|
|
|
class AddUsersStateIndex < ActiveRecord::Migration
|
2016-06-16 23:09:34 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_concurrent_index :users, :state
|
|
|
|
end
|
|
|
|
end
|