summaryrefslogtreecommitdiff
path: root/db/migrate/20190719122333_add_login_recaptcha_protection_enabled_to_application_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190719122333_add_login_recaptcha_protection_enabled_to_application_settings.rb')
-rw-r--r--db/migrate/20190719122333_add_login_recaptcha_protection_enabled_to_application_settings.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrate/20190719122333_add_login_recaptcha_protection_enabled_to_application_settings.rb b/db/migrate/20190719122333_add_login_recaptcha_protection_enabled_to_application_settings.rb
deleted file mode 100644
index 4561e1e8aa9..00000000000
--- a/db/migrate/20190719122333_add_login_recaptcha_protection_enabled_to_application_settings.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-# frozen_string_literal: true
-
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AddLoginRecaptchaProtectionEnabledToApplicationSettings < ActiveRecord::Migration[5.1]
- DOWNTIME = false
-
- def change
- add_column :application_settings, :login_recaptcha_protection_enabled, :boolean, default: false, null: false
- end
-end