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:
Diffstat (limited to 'core/Updates/1.5-b5.php')
-rw-r--r--core/Updates/1.5-b5.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/core/Updates/1.5-b5.php b/core/Updates/1.5-b5.php
index 65e95ca70f..c00eac3dce 100644
--- a/core/Updates/1.5-b5.php
+++ b/core/Updates/1.5-b5.php
@@ -14,21 +14,21 @@
*/
class Piwik_Updates_1_5_b5 extends Piwik_Updates
{
- static function getSql($schema = 'Myisam')
- {
- return array(
- 'CREATE TABLE `'. Piwik_Common::prefixTable('session') .'` (
+ static function getSql($schema = 'Myisam')
+ {
+ return array(
+ 'CREATE TABLE `' . Piwik_Common::prefixTable('session') . '` (
id CHAR(32) NOT NULL,
modified INTEGER,
lifetime INTEGER,
data TEXT,
PRIMARY KEY ( id )
) DEFAULT CHARSET=utf8' => false,
- );
- }
+ );
+ }
- static function update()
- {
- Piwik_Updater::updateDatabase(__FILE__, self::getSql());
- }
+ static function update()
+ {
+ Piwik_Updater::updateDatabase(__FILE__, self::getSql());
+ }
}