castopod/modules/Analytics/Database/Migrations/2017-12-01-070000_add_analy...

63 lines
1.8 KiB
PHP

<?php
declare(strict_types=1);
/**
* Class AddAnalyticsWebsiteByReferer Creates analytics_website_by_referer table in database
*
* @copyright 2020 Ad Aures
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace Modules\Analytics\Database\Migrations;
use CodeIgniter\Database\Migration;
class AddAnalyticsWebsiteByReferer extends Migration
{
public function up(): void
{
$this->forge->addField([
'podcast_id' => [
'type' => 'INT',
'unsigned' => true,
],
'date' => [
'type' => 'DATE',
],
'referer_url' => [
'type' => 'VARCHAR',
'constraint' => 512,
],
'domain' => [
'type' => 'VARCHAR',
'constraint' => 128,
'null' => true,
],
'keywords' => [
'type' => 'VARCHAR',
// length of referer_url (512) - domain (128) = 384
'constraint' => 384,
'null' => true,
],
'hits' => [
'type' => 'INT',
'unsigned' => true,
'default' => 1,
],
]);
$this->forge->addPrimaryKey(['podcast_id', 'date', 'referer_url']);
$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->createTable('analytics_website_by_referer');
}
public function down(): void
{
$this->forge->dropTable('analytics_website_by_referer');
}
}