diff --git a/src/Appwrite/Migration/Version/V11.php b/src/Appwrite/Migration/Version/V11.php index 6642e919b5..e7d1285072 100644 --- a/src/Appwrite/Migration/Version/V11.php +++ b/src/Appwrite/Migration/Version/V11.php @@ -181,7 +181,7 @@ class V11 extends Migration $sum = \count($all); - Console::log('Migrating Documents: ' . $offset . ' / ' . $this->oldProjectDB->getSum()); + Console::log('Migrating Internal Documents: ' . $offset . ' / ' . $this->oldProjectDB->getSum()); foreach ($all as $document) { if ( @@ -214,7 +214,7 @@ class V11 extends Migration $offset += $this->limit; $total += $sum; } - Console::log('Migrated ' . $total . ' Documents.'); + Console::log('Migrated ' . $total . ' Internal Documents.'); } /**