summaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/redmine.rake3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tasks/redmine.rake b/lib/tasks/redmine.rake
index c8d35afb2..c9ee517ec 100644
--- a/lib/tasks/redmine.rake
+++ b/lib/tasks/redmine.rake
@@ -68,7 +68,8 @@ DESC
tables = ActiveRecord::Base.connection.tables.sort - %w(schema_migrations plugin_schema_info)
if (tables - target_tables).any?
- abort "The following table(s) are missing from the target database: #{(tables - target_tables).join(', ')}"
+ list = (tables - target_tables).map {|table| "* #{table}"}.join("\n")
+ abort "The following table(s) are missing from the target database:\n#{list}"
end
tables.each do |table_name|