summaryrefslogtreecommitdiff
path: root/db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb')
-rw-r--r--db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb b/db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb
deleted file mode 100644
index 324e051666b..00000000000
--- a/db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# rubocop:disable Migration/UpdateLargeTable
-class AddTwoFactorColumnsToNamespaces < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_column_with_default(:namespaces, :require_two_factor_authentication, :boolean, default: false)
- add_column_with_default(:namespaces, :two_factor_grace_period, :integer, default: 48)
-
- add_concurrent_index(:namespaces, :require_two_factor_authentication)
- end
-
- def down
- remove_column(:namespaces, :require_two_factor_authentication)
- remove_column(:namespaces, :two_factor_grace_period)
-
- remove_concurrent_index(:namespaces, :require_two_factor_authentication) if index_exists?(:namespaces, :require_two_factor_authentication)
- end
-end