mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +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
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
||
|
||
/**
|
||
* Class AddAnalyticsUnknownUseragents
|
||
* Creates analytics_unknown_useragents 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 AddAnalyticsUnknownUseragents extends Migration
|
||
{
|
||
public function up()
|
||
{
|
||
$this->forge->addField([
|
||
'id' => [
|
||
'type' => 'INT',
|
||
'unsigned' => true,
|
||
'auto_increment' => true,
|
||
],
|
||
'useragent' => [
|
||
'type' => 'VARCHAR',
|
||
'constraint' => 191,
|
||
'unique' => true,
|
||
],
|
||
'hits' => [
|
||
'type' => 'INT',
|
||
'unsigned' => true,
|
||
'default' => 1,
|
||
],
|
||
]);
|
||
$this->forge->addKey('id', true);
|
||
// `created_at` and `updated_at` are created with SQL because Model class won’t be used for insertion (Procedure will be used instead)
|
||
$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_unknown_useragents');
|
||
}
|
||
|
||
public function down()
|
||
{
|
||
$this->forge->dropTable('analytics_unknown_useragents');
|
||
}
|
||
}
|