diff --git a/main/install/update-db-1.8.6.2-1.8.7.inc.php b/main/install/update-db-1.8.6.2-1.8.7.inc.php index 07503c7ca3..57f888e701 100644 --- a/main/install/update-db-1.8.6.2-1.8.7.inc.php +++ b/main/install/update-db-1.8.6.2-1.8.7.inc.php @@ -272,6 +272,7 @@ if (defined('SYSTEM_INSTALLATION')) { $tables = Database::get_tables($dbStatsForm); foreach ($tables as $table) { $query = "ALTER TABLE `" . $table . "` CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;"; + Log::notice('Database: statistics, Table: '. $table); $res = Database::query($query); if ($res === false) { Log::error('Error in ' . $query . ': ' . Database::error()); @@ -299,6 +300,7 @@ if (defined('SYSTEM_INSTALLATION')) { //getting the type question id $sql_question = "SELECT type FROM $my_course_db.quiz_question where id = $question_id"; + Log::notice('Database: '. $my_course_db); $res_question = Database::query($sql_question); $row = Database::fetch_array($res_question); $type = $row['type'];