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

66 lines
1.9 KiB
PHP

<?php
declare(strict_types=1);
/**
* Class AddAnalyticsPodcastsByRegion Creates analytics_podcasts_by_region 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 AddAnalyticsPodcastsByRegion extends Migration
{
public function up(): void
{
$this->forge->addField([
'podcast_id' => [
'type' => 'INT',
'unsigned' => true,
],
'date' => [
'type' => 'DATE',
],
'country_code' => [
'type' => 'VARCHAR',
'constraint' => 3,
'comment' => 'ISO 3166-1 code.',
],
'region_code' => [
'type' => 'VARCHAR',
'constraint' => 3,
'comment' => 'ISO 3166-2 code.',
],
'latitude' => [
'type' => 'DECIMAL(8,6)',
'null' => true,
],
'longitude' => [
'type' => 'DECIMAL(9,6)',
'null' => true,
],
'hits' => [
'type' => 'INT',
'unsigned' => true,
'default' => 1,
],
]);
$this->forge->addPrimaryKey(['podcast_id', 'date', 'country_code', 'region_code']);
$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_podcasts_by_region');
}
public function down(): void
{
$this->forge->dropTable('analytics_podcasts_by_region');
}
}