add piwik installation
This commit is contained in:
parent
90aa4ef157
commit
8c5d4f0c31
3197 changed files with 563902 additions and 0 deletions
54
www/analytics/core/Updates/1.9-b16.php
Executable file
54
www/analytics/core/Updates/1.9-b16.php
Executable file
|
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Piwik\Updates;
|
||||
|
||||
use Piwik\Common;
|
||||
use Piwik\Updater;
|
||||
use Piwik\Updates;
|
||||
|
||||
/**
|
||||
*/
|
||||
class Updates_1_9_b16 extends Updates
|
||||
{
|
||||
static function isMajorUpdate()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static function getSql()
|
||||
{
|
||||
return array(
|
||||
'ALTER TABLE `' . Common::prefixTable('log_link_visit_action') . '`
|
||||
CHANGE `idaction_url` `idaction_url` INT( 10 ) UNSIGNED NULL DEFAULT NULL'
|
||||
=> false,
|
||||
|
||||
|
||||
'ALTER TABLE `' . Common::prefixTable('log_visit') . '`
|
||||
ADD visit_total_searches SMALLINT(5) UNSIGNED NOT NULL AFTER `visit_total_actions`'
|
||||
=> 1060,
|
||||
|
||||
'ALTER TABLE `' . 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,
|
||||
|
||||
// enable Site Search for all websites, users can manually disable the setting
|
||||
'UPDATE `' . Common::prefixTable('site') . '`
|
||||
SET `sitesearch` = 1' => false,
|
||||
);
|
||||
}
|
||||
|
||||
static function update()
|
||||
{
|
||||
Updater::updateDatabase(__FILE__, self::getSql());
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue