summaryrefslogtreecommitdiff
path: root/db/migrate/20190605104727_add_default_project_deletion_protection_to_application_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190605104727_add_default_project_deletion_protection_to_application_settings.rb')
-rw-r--r--db/migrate/20190605104727_add_default_project_deletion_protection_to_application_settings.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/migrate/20190605104727_add_default_project_deletion_protection_to_application_settings.rb b/db/migrate/20190605104727_add_default_project_deletion_protection_to_application_settings.rb
deleted file mode 100644
index e660c918fa4..00000000000
--- a/db/migrate/20190605104727_add_default_project_deletion_protection_to_application_settings.rb
+++ /dev/null
@@ -1,22 +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 AddDefaultProjectDeletionProtectionToApplicationSettings < ActiveRecord::Migration[5.1]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- # rubocop:disable Migration/AddColumnWithDefault
- add_column_with_default :application_settings, :default_project_deletion_protection, :boolean, default: false, allow_null: false
- # rubocop:enable Migration/AddColumnWithDefault
- end
-
- def down
- remove_column :application_settings, :default_project_deletion_protection
- end
-end