summaryrefslogtreecommitdiffstats
path: root/lib/private/Repair
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-04-27 12:21:31 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-04-28 13:52:01 +0200
commit821d8736c89eae3ad35c0ddc726a583b0c0cf99c (patch)
tree02a96643204969d6927c9ac41cef9ecdcb1f4519 /lib/private/Repair
parentbbd2a07525db6b70645720f4c022b5562543127e (diff)
downloadnextcloud-server-821d8736c89eae3ad35c0ddc726a583b0c0cf99c.tar.gz
nextcloud-server-821d8736c89eae3ad35c0ddc726a583b0c0cf99c.zip
Adding progress to web upgrade
Diffstat (limited to 'lib/private/Repair')
-rw-r--r--lib/private/Repair/DropOldTables.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Repair/DropOldTables.php b/lib/private/Repair/DropOldTables.php
index 59e8487c2a3..b9963b50775 100644
--- a/lib/private/Repair/DropOldTables.php
+++ b/lib/private/Repair/DropOldTables.php
@@ -61,7 +61,7 @@ class DropOldTables implements IRepairStep {
if ($this->connection->tableExists($tableName)){
$this->connection->dropTable($tableName);
}
- $output->advance();
+ $output->advance(1, "Drop old database table: $tableName");
}
$output->finishProgress();
}