Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/migration/add_column.rb')
-rw-r--r--rubocop/cop/migration/add_column.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/rubocop/cop/migration/add_column.rb b/rubocop/cop/migration/add_column.rb
index a25bd843559..0af90fb7fd1 100644
--- a/rubocop/cop/migration/add_column.rb
+++ b/rubocop/cop/migration/add_column.rb
@@ -8,11 +8,6 @@ module RuboCop
class AddColumn < RuboCop::Cop::Cop
include MigrationHelpers
- WHITELISTED_TABLES = %i[
- application_settings
- plan_limits
- ].freeze
-
MSG = '`add_column` with a default value requires downtime, ' \
'use `add_column_with_default` instead'.freeze