\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/ob-wp-eski/core/Updates/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/ob-wp-eski/core/Updates/1.5-b1.php |
<?php
/**
* Piwik - free/libre analytics platform
*
* @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;
use Piwik\Updater\Migration\Factory as MigrationFactory;
/**
*/
class Updates_1_5_b1 extends Updates
{
/**
* @var MigrationFactory
*/
private $migration;
public function __construct(MigrationFactory $factory)
{
$this->migration = $factory;
}
public function getMigrations(Updater $updater)
{
return array(
$this->migration->db->createTable('log_conversion_item', array(
'idsite' => 'int(10) UNSIGNED NOT NULL',
'idvisitor' => 'BINARY(8) NOT NULL',
'server_time' =>'DATETIME NOT NULL',
'idvisit' => 'INTEGER(10) UNSIGNED NOT NULL',
'idorder' => 'varchar(100) NOT NULL',
'idaction_sku' => 'INTEGER(10) UNSIGNED NOT NULL',
'idaction_name' => 'INTEGER(10) UNSIGNED NOT NULL',
'idaction_category' => 'INTEGER(10) UNSIGNED NOT NULL',
'price' => 'FLOAT NOT NULL',
'quantity' => 'INTEGER(10) UNSIGNED NOT NULL',
'deleted' => 'TINYINT(1) UNSIGNED NOT NULL',
), array('idvisit', 'idorder', 'idaction_sku')),
$this->migration->db->addIndex('log_conversion_item', array('idsite', 'server_time'), 'index_idsite_servertime'),
$this->migration->db->addColumns('log_visit', array(
'visitor_days_since_order' => 'SMALLINT(5) UNSIGNED NOT NULL',
'visit_goal_buyer' => 'TINYINT(1) NOT NULL'
), 'visitor_days_since_last'),
$this->migration->db->addColumn('log_conversion', 'visitor_days_since_order', 'SMALLINT(5) UNSIGNED NOT NULL', 'visitor_days_since_first'),
$this->migration->db->addColumns('log_conversion', array(
'idorder' => 'varchar(100) default NULL',
'items' => 'SMALLINT UNSIGNED DEFAULT NULL',
'revenue_subtotal' => 'float default NULL',
'revenue_tax' => 'float default NULL',
'revenue_shipping' => 'float default NULL',
'revenue_discount' => 'float default NULL',
), 'buster'),
$this->migration->db->addUniqueKey('log_conversion', array('idsite', 'idorder'))
);
}
public function doUpdate(Updater $updater)
{
$updater->executeMigrations(__FILE__, $this->getMigrations($updater));
}
}