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.9-b16.php')
-rwxr-xr-xcore/Updates/1.9-b16.php44
1 files changed, 22 insertions, 22 deletions
diff --git a/core/Updates/1.9-b16.php b/core/Updates/1.9-b16.php
index ccac385e9e..b4ec364801 100755
--- a/core/Updates/1.9-b16.php
+++ b/core/Updates/1.9-b16.php
@@ -14,38 +14,38 @@
*/
class Piwik_Updates_1_9_b16 extends Piwik_Updates
{
- static function isMajorUpdate()
- {
- return true;
- }
-
- static function getSql($schema = 'Myisam')
- {
- return array(
- 'ALTER TABLE `'. Piwik_Common::prefixTable('log_link_visit_action') .'`
+ static function isMajorUpdate()
+ {
+ return true;
+ }
+
+ static function getSql($schema = 'Myisam')
+ {
+ return array(
+ 'ALTER TABLE `' . Piwik_Common::prefixTable('log_link_visit_action') . '`
CHANGE `idaction_url` `idaction_url` INT( 10 ) UNSIGNED NULL DEFAULT NULL'
- => false,
+ => false,
- 'ALTER TABLE `'. Piwik_Common::prefixTable('log_visit') .'`
+ 'ALTER TABLE `' . Piwik_Common::prefixTable('log_visit') . '`
ADD visit_total_searches SMALLINT(5) UNSIGNED NOT NULL AFTER `visit_total_actions`'
- => 1060,
+ => 1060,
- 'ALTER TABLE `'. Piwik_Common::prefixTable('site') .'`
+ 'ALTER TABLE `' . Piwik_Common::prefixTable('site') . '`
ADD sitesearch TINYINT DEFAULT 1 AFTER `excluded_parameters`,
ADD sitesearch_keyword_parameters TEXT NOT NULL AFTER `sitesearch`,
ADD sitesearch_category_parameters TEXT NOT NULL AFTER `sitesearch_keyword_parameters`'
- => 1060,
+ => 1060,
- // enable Site Search for all websites, users can manually disable the setting
- 'UPDATE `'. Piwik_Common::prefixTable('site') .'`
+ // enable Site Search for all websites, users can manually disable the setting
+ 'UPDATE `' . Piwik_Common::prefixTable('site') . '`
SET `sitesearch` = 1' => false,
- );
- }
+ );
+ }
- static function update()
- {
- Piwik_Updater::updateDatabase(__FILE__, self::getSql());
- }
+ static function update()
+ {
+ Piwik_Updater::updateDatabase(__FILE__, self::getSql());
+ }
}