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
path: root/lib/tasks
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-01 09:06:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-01 09:06:11 +0300
commit864475536355651a9f7caa5b1606aa5640424ec3 (patch)
tree1dc80c96ddf3f9049c4a163b4c49f052a9b1a4ad /lib/tasks
parent7ddd5846999029916b2b6d8560b5b0f02ec0f6ea (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/db_obsolete_ignored_columns.rake5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/tasks/db_obsolete_ignored_columns.rake b/lib/tasks/db_obsolete_ignored_columns.rake
index 184e407f28c..00f60231f4f 100644
--- a/lib/tasks/db_obsolete_ignored_columns.rake
+++ b/lib/tasks/db_obsolete_ignored_columns.rake
@@ -8,7 +8,10 @@ task 'db:obsolete_ignored_columns' => :environment do
puts 'The following `ignored_columns` are obsolete and can be removed:'
list.each do |name, ignored_columns|
- puts "- #{name}: #{ignored_columns.join(', ')}"
+ puts "#{name}:"
+ ignored_columns.each do |column, removal|
+ puts " - #{column.ljust(30)} Remove after #{removal.remove_after} with #{removal.remove_with}"
+ end
end
puts <<~TEXT