mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00

- harmonize field types and use explicit names - store html value alongside markdown descriptions for better performance - add duration and bandwidth to podcast analytics - add new analytics table for podcast hits by hour - replace visible MAXMIND_LICENCE_KEY with variable
78 lines
2.0 KiB
PHP
78 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class AddAnalyticsPodcastsByPlayer
|
|
* Creates analytics_podcasts_by_player table in database
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class AddAnalyticsPodcastsByPlayer extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
$this->forge->addField([
|
|
'podcast_id' => [
|
|
'type' => 'INT',
|
|
'unsigned' => true,
|
|
],
|
|
'date' => [
|
|
'type' => 'DATE',
|
|
],
|
|
'service' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 128,
|
|
],
|
|
'app' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 128,
|
|
],
|
|
'device' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 32,
|
|
],
|
|
'os' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 32,
|
|
],
|
|
'is_bot' => [
|
|
'type' => 'TINYINT',
|
|
'constraint' => 1,
|
|
'default' => 0,
|
|
],
|
|
'hits' => [
|
|
'type' => 'INT',
|
|
'unsigned' => true,
|
|
'default' => 1,
|
|
],
|
|
]);
|
|
$this->forge->addPrimaryKey([
|
|
'podcast_id',
|
|
'date',
|
|
'service',
|
|
'app',
|
|
'device',
|
|
'os',
|
|
'is_bot',
|
|
]);
|
|
$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_podcasts_by_player');
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->forge->dropTable('analytics_podcasts_by_player');
|
|
}
|
|
}
|