Merge branch 'rubocop-fix-migration-two-factor-columns' into 'master'

Fixed rubocop failure for the add_two_factor_columns_migration

See merge request !10505
This commit is contained in:
Stan Hu 2017-04-06 19:24:49 +00:00
commit 73cb71e41c
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ class AddTwoFactorColumnsToNamespaces < ActiveRecord::Migration
remove_column(:namespaces, :require_two_factor_authentication)
remove_column(:namespaces, :two_factor_grace_period)
remove_index(:namespaces, :require_two_factor_authentication) if index_exists?(:namespaces, :require_two_factor_authentication)
remove_concurrent_index(:namespaces, :require_two_factor_authentication) if index_exists?(:namespaces, :require_two_factor_authentication)
end
end