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

1.5-b1.php « Updates « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abec02aeac016f25a420442f449b0a81b15af454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */

namespace Piwik\Updates;

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));
    }
}