2020-06-12 20:41:09 +00:00
|
|
|
<?php
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
/**
|
|
|
|
* Class AddAnalyticsWebsiteByReferer
|
|
|
|
* Creates analytics_website_by_referer table in database
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
namespace App\Database\Migrations;
|
|
|
|
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
|
|
|
|
class AddAnalyticsWebsiteByReferer extends Migration
|
|
|
|
{
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
$this->forge->addField([
|
|
|
|
'podcast_id' => [
|
2020-10-29 15:45:19 +00:00
|
|
|
'type' => 'INT',
|
2020-06-12 20:41:09 +00:00
|
|
|
'unsigned' => true,
|
|
|
|
],
|
2020-10-06 15:39:27 +00:00
|
|
|
'date' => [
|
2020-10-29 15:45:19 +00:00
|
|
|
'type' => 'DATE',
|
2020-10-06 15:39:27 +00:00
|
|
|
],
|
2020-10-29 15:45:19 +00:00
|
|
|
'referer_url' => [
|
2020-06-12 20:41:09 +00:00
|
|
|
'type' => 'VARCHAR',
|
2020-10-06 15:39:27 +00:00
|
|
|
'constraint' => 512,
|
2020-06-12 20:41:09 +00:00
|
|
|
],
|
2020-10-06 15:39:27 +00:00
|
|
|
'domain' => [
|
|
|
|
'type' => 'VARCHAR',
|
|
|
|
'constraint' => 128,
|
|
|
|
'null' => true,
|
|
|
|
],
|
|
|
|
'keywords' => [
|
|
|
|
'type' => 'VARCHAR',
|
2020-10-29 15:45:19 +00:00
|
|
|
'constraint' => 384, // length of referer_url (512) - domain (128)
|
2020-10-06 15:39:27 +00:00
|
|
|
'null' => true,
|
2020-06-12 20:41:09 +00:00
|
|
|
],
|
|
|
|
'hits' => [
|
|
|
|
'type' => 'INT',
|
2020-10-29 15:45:19 +00:00
|
|
|
'unsigned' => true,
|
2020-06-12 20:41:09 +00:00
|
|
|
'default' => 1,
|
|
|
|
],
|
|
|
|
]);
|
2020-10-29 15:45:19 +00:00
|
|
|
$this->forge->addPrimaryKey(['podcast_id', 'date', 'referer_url']);
|
2020-06-12 20:41:09 +00:00
|
|
|
$this->forge->addField(
|
|
|
|
'`created_at` timestamp NOT NULL DEFAULT current_timestamp()'
|
|
|
|
);
|
|
|
|
$this->forge->addField(
|
|
|
|
'`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()'
|
|
|
|
);
|
|
|
|
$this->forge->addForeignKey('podcast_id', 'podcasts', 'id');
|
|
|
|
$this->forge->createTable('analytics_website_by_referer');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
$this->forge->dropTable('analytics_website_by_referer');
|
|
|
|
}
|
|
|
|
}
|