Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-02-05 05:01:27 +0400
committermattab <matthieu.aubry@gmail.com>2014-02-05 05:01:27 +0400
commitb104b4b4044d7566ba00b568bf70c141dd76ba03 (patch)
tree5aae2747cdb8f9eace1443e4319d687638d4b991 /core/Updates.php
parent280be96c7eb65ea193cb86411352c9f994b6dc98 (diff)
Remove $schema = 'Myisam' from all update methods refs #4611
Diffstat (limited to 'core/Updates.php')
-rw-r--r--core/Updates.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/Updates.php b/core/Updates.php
index 3a214b59d3..1178770e79 100644
--- a/core/Updates.php
+++ b/core/Updates.php
@@ -18,14 +18,13 @@ abstract class Updates
/**
* Return SQL to be executed in this update
*
- * @param string $schema Schema name
* @return array(
* 'ALTER .... ' => '1234', // if the query fails, it will be ignored if the error code is 1234
* 'ALTER .... ' => false, // if an error occurs, the update will stop and fail
* // and user will have to manually run the query
* )
*/
- static function getSql($schema = 'Myisam')
+ static function getSql()
{
return array();
}