From b96c598cfd7405a8debbac411f08f4207da8772a Mon Sep 17 00:00:00 2001 From: bdaloukas Date: Tue, 20 Jun 2017 17:43:08 +0300 Subject: [PATCH] Change name of game_snakes_databases.cols to usedcols --- db/upgrade.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/db/upgrade.php b/db/upgrade.php index 244083d..225e2c5 100644 --- a/db/upgrade.php +++ b/db/upgrade.php @@ -45,7 +45,9 @@ defined('MOODLE_INTERNAL') || die(); /** * Copies a string field to int field * - * @param int $oldversion + * @param string $table the name of table + * @param string $from the name of source field + * @param string $to the name of destination field */ function mpgame_db_copy_string_to_int( $table, $from, $to) { global $CFG, $DB;