From 7feb5f6280b704d2e4b76f0a8a3a5bdcde991717 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Mon, 5 Nov 2012 22:23:00 -0500 Subject: [PATCH] Minor - updated style of migration count report --- tests/migrate/count_report.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/migrate/count_report.php b/tests/migrate/count_report.php index 72aebc1d89..9278224ce4 100644 --- a/tests/migrate/count_report.php +++ b/tests/migrate/count_report.php @@ -8,6 +8,7 @@ $tables = array( 'session_rel_course_rel_user', 'gradebook_category', ); +echo "\n--- Post-migration count report ---\n"; foreach ($tables as $table) { $sql = "SELECT count(*) FROM $table"; $res = Database::query($sql); @@ -19,3 +20,4 @@ foreach ($tables as $table) { echo "Table $table has $count items after migration\n"; } } +echo "\n";